docupdate

This commit is contained in:
maniacbug 2011-07-08 22:19:54 -07:00
parent d5a3e79c66
commit f8e6984ccc
1 changed files with 8 additions and 1 deletions

9
RF24.h
View File

@ -466,7 +466,7 @@ public:
* @param[out] tx_fail The send failed, too many retries (MAX_RT)
* @param[out] rx_ready There is a message waiting to be read (RX_DS)
*/
void whatHappened(bool& tx_ok,bool& tx_fail,bool& rx);
void whatHappened(bool& tx_ok,bool& tx_fail,bool& rx_ready);
/**
* Enable or disable auto-acknowlede packets
@ -548,6 +548,13 @@ public:
* the sender's message arrives.
*/
/**
* @example pingpair_irq.pde
*
* This is an example of how to user interrupts to interact with the radio.
* It builds on the pingpair_pl example, and uses ack payloads.
*/
/**
* @example pingpair_sleepy.pde
*