Fork from LoRa Alliance program. available here: https://developer.mbed.org/users/Alliance/code/LoRaWAN/

Dependencies:   LoRaMacLib SX1276Lib mbed Chainable_RGB_LED DigitDisplay

Fork of LoRaWAN by LoRa All

Revision:
13:6cfbb6d1f491
Parent:
12:d7ac3e3720a5
Child:
14:50b6c4342ad4
--- a/main.cpp	Tue Nov 24 11:40:06 2015 +0000
+++ b/main.cpp	Tue Nov 24 11:49:10 2015 +0000
@@ -30,13 +30,13 @@
  */
 static uint8_t DevEui[] =
 {
-    0x73, 0x65, 0x6d, 0x74, 0x65, 0x63, 0xef, 0x2c                  /// <<< Change here
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00                  /// <<< Change here
 };
 
 /*!
  * Device address
  */
-static uint32_t DevAddr = 0x6563ef2c;                               /// <<< Change here
+static uint32_t DevAddr = 0x00000000;                               /// <<< Change here
 
 /*!
  * AES encryption/decryption cipher network session key
@@ -44,7 +44,7 @@
 static uint8_t NwkSKey[] = 
 { 
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,                 /// <<< Change here
-    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x2c
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 };
 
 /*!
@@ -53,7 +53,7 @@
 static uint8_t AppSKey[] = 
 { 
     0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,                 /// <<< Change here
-    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xef, 0x2c
+    0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
 };