From c815a29e5be1992eb02f6920efc9f36cdf6ab6ca Mon Sep 17 00:00:00 2001 From: repeat Date: Mon, 10 Feb 2014 22:56:56 +0300 Subject: [PATCH] remove autoswitch to Power down mode after write() when it need you can write it in your code yourself --- RF24.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/RF24.cpp b/RF24.cpp index 9471583d..1f7f8a38 100644 --- a/RF24.cpp +++ b/RF24.cpp @@ -494,12 +494,12 @@ bool RF24::write( const void* buf, uint8_t len ) // Yay, we are done. - // Power down - powerDown(); - // Flush buffers (Is this a relic of past experimentation, and not needed anymore??) flush_tx(); + // Power down + //powerDown(); + return result; } /****************************************************************************/