Maniacbug's RF24 arduino library ported to mbed. Tested, it works for Nucleo F411

Dependents:   RF24Network_Send RF24Network_Receive WeatherStation maple_chotobot_rf_motores ... more

Files at this revision

API Documentation at this revision

Comitter:
akashvibhute
Date:
Tue Aug 23 09:25:48 2016 +0000
Parent:
6:5cc7136648d1
Child:
9:ef74df512fed
Commit message:
disabled radio details printing

Changed in this revision

RF24.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/RF24.cpp	Thu Apr 21 04:10:58 2016 +0000
+++ b/RF24.cpp	Tue Aug 23 09:25:48 2016 +0000
@@ -692,7 +692,7 @@
   // Enable PTX, do not write CE high so radio will remain in standby I mode ( 130us max to transition to RX or TX instead of 1500us from powerUp )
   // PTX should use only 22uA of power
   write_register(NRF_CONFIG, ( read_register(NRF_CONFIG) ) & ~_BV(PRIM_RX) );
-	printDetails();
+	//printDetails();
   // if setup is 0 or ff then there was no response from module
   return ( setup != 0 && setup != 0xff );
 }