Library for HopeRF RFM22 / RFM22B transceiver module ported to mbed. Original Software from Mike McCauley (mikem@open.com.au) . See http://www.open.com.au/mikem/arduino/RF22/

Dependents:   RF22_MAX_test_Send Geofence_receiver Geofence_sender Geofence_sender ... more

More Info about RFM22-modules like connecting and a demo-program see RF22-Notebook

Files at this revision

API Documentation at this revision

Comitter:
charly
Date:
Sat Feb 18 20:40:59 2012 +0000
Parent:
2:f6f42c2ba9f2
Child:
4:f0bf38bb0ff8
Commit message:
FIxed typo

Changed in this revision

RF22.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/RF22.cpp	Sat Feb 18 20:34:59 2012 +0000
+++ b/RF22.cpp	Sat Feb 18 20:40:59 2012 +0000
@@ -181,7 +181,7 @@
 // Set the AFC for receiver to max. 0,1MHz
 // Other AFC-Registers have PowerOnValues which enable AFC
 // RF22_AFC_LIMIT                          0x50   =0,1MHz
-   rf22.spiWrite(RF22_REG_2A_AFC_LIMITER, RF22_AFC_LIMIT);  // POR=0x00 = OFF
+   spiWrite(RF22_REG_2A_AFC_LIMITER, RF22_AFC_LIMIT);  // POR=0x00 = OFF
 
     return true;
 }