C++ Wrapper around the IBM LMiC LoRaWAN implementation

Dependencies:   LMiC SX1276Lib

Revision:
3:63ac55b3514a
Parent:
2:6fac10decfb3
Child:
6:a93e81aa299d
Child:
7:c5eb71a7c94f
--- a/Node.cpp	Thu Jun 30 18:49:11 2016 +0000
+++ b/Node.cpp	Thu Jun 30 19:39:40 2016 +0000
@@ -31,21 +31,6 @@
     SimpleLoRaWAN::Node::onEvent(ev);
 }
 
-void onSendFrame(osjob_t* j)
-{
-    printf("Sending frame...\n\r");
-    LMIC.frame[0] = 'H';
-    LMIC.frame[1] = 'e';
-    LMIC.frame[2] = 'i';
-    LMIC.frame[3] = ' ';
-    LMIC.frame[4] = 'v';
-    LMIC.frame[5] = 'e';
-    LMIC.frame[6] = 'r';
-    LMIC.frame[7] = 'd';
-    LMIC.frame[8] = 'e';
-    LMIC.frame[9] = 'n';
-    LMIC_setTxData2(15, LMIC.frame, 10, 0);
-}