Skip to content

Commit

Permalink
deprecate isAckPayloadAvailable() nRF24#664
Browse files Browse the repository at this point in the history
  • Loading branch information
2bndy5 committed Nov 10, 2020
1 parent 98946e6 commit 9034a0a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions RF24.h
Original file line number Diff line number Diff line change
Expand Up @@ -547,16 +547,6 @@ class RF24 {
*/
void writeAckPayload(uint8_t pipe, const void* buf, uint8_t len);

/**
* Determine if an ack payload was received in the most recent call to
* write(). The regular available() can also be used.
*
* Call read() to retrieve the ack payload.
*
* @return True if an ack payload is available.
*/
bool isAckPayloadAvailable(void);

/**
* Call this when you get an interrupt to find out why
*
Expand Down Expand Up @@ -1129,6 +1119,16 @@ class RF24 {
*/
void enableDynamicAck();

/**
* Determine if an ack payload was received in the most recent call to
* write(). The regular available() can also be used.
*
* Call read() to retrieve the ack payload.
*
* @return True if an ack payload is available.
*/
bool isAckPayloadAvailable(void);

private:

/**@}*/
Expand Down

0 comments on commit 9034a0a

Please sign in to comment.