RFM12B radio module driver library

Dependents:   HaTemp

Fork of RF12B by Andrew Lindsay

Revision:
2:a5808054ac5f
Parent:
1:984e7620084e
--- a/RF12B.cpp	Thu Aug 13 13:50:12 2015 +0000
+++ b/RF12B.cpp	Fri Jun 03 18:04:04 2016 +0000
@@ -188,14 +188,13 @@
 }
 
 
-void RF12B::rf12_sendStart (uint8_t hdr, const void* ptr, uint8_t len) {
+void RF12B::sendStart (uint8_t hdr, const void* ptr, uint8_t len) {
     rf12_len = len;
     memcpy((void*) rf12_data, ptr, len);
-    rf12_sendStart(hdr);
+    sendStart(hdr);
 }
 
-//void RF12B::rf12_sendStart2 (uint8_t hdr) {
-void RF12B::rf12_sendStart (uint8_t hdr) {
+void RF12B::sendStart (uint8_t hdr) {
     rf12_hdr = hdr & RF12_HDR_DST ? hdr :
                (hdr & ~RF12_HDR_MASK) + (nodeid & NODE_ID);