Port of lowpowerlab RFM69 Packet radio library for HopeRF RFM69H with hacks from debugging with a FRDM-KL25Z

Dependents:   chuk

Fork of RFM69 by B Rey

Revision:
5:dd8ff3ab5e2a
Parent:
3:9d44479041c3
--- a/RFM69.h	Mon Jun 06 13:11:58 2016 +0000
+++ b/RFM69.h	Fri Jun 10 06:17:14 2016 +0000
@@ -75,7 +75,6 @@
     bool canSend();
     void send(uint8_t toAddress, const void* buffer, uint8_t bufferSize, bool requestACK=false);
     bool sendWithRetry(uint8_t toAddress, const void* buffer, uint8_t bufferSize, uint8_t retries=2, uint8_t retryWaitTime=40); // 40ms roundtrip req for 61byte packets
-    void receive();
     bool receiveDone();
     bool ACKReceived(uint8_t fromNodeID);
     bool ACKRequested();
@@ -104,7 +103,7 @@
 
     static RFM69* selfPointer;
     DigitalOut _slaveSelectPin;
-    //InterruptIn _interrupt;
+    InterruptIn _interrupt;
     uint8_t _address;
     Timer t;
     bool _promiscuousMode;