Library to send and receive data using RF12B transceiver modules Big thanks to the tutorial at https://loee.jottit.com/rfm12b_and_avr_-_quick_start and madcowswe

Dependents:   Measure_system Quadcopter_copy

Files at this revision

API Documentation at this revision

Comitter:
harryeakins
Date:
Fri Mar 11 21:38:26 2011 +0000
Parent:
8:6fc24b44e027
Commit message:
Fixed bug in initialization routine where the mode of the RF module was not set.

Changed in this revision

RF12B.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/RF12B.cpp	Fri Mar 11 20:40:43 2011 +0000
+++ b/RF12B.cpp	Fri Mar 11 21:38:26 2011 +0000
@@ -236,6 +236,7 @@
         // I think this will slow down the pll's reaction time. Not sure, check with someone!
     );
 
+    changeMode(RX);
     resetRX();
     status();
 }