From f8e6984ccc15ef0423fc04843ecb533a762d6247 Mon Sep 17 00:00:00 2001 From: maniacbug Date: Fri, 8 Jul 2011 22:19:54 -0700 Subject: [PATCH] docupdate --- RF24.h | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/RF24.h b/RF24.h index b2b3b1c..6b4ab19 100644 --- a/RF24.h +++ b/RF24.h @@ -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 *