Skip to content

Commit

Permalink
Updated Comissioning.h
Browse files Browse the repository at this point in the history
Now you have to put your own APP-DATA IN Commissioning.h:
LORAWAN_DEVICE_EUI
LORAWAN_APPLICATION_EUI
LORAWAN_APPLICATION_KEY
  • Loading branch information
jcaridadhdez committed Apr 26, 2018
1 parent 0895bc6 commit a6ae20f
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/Commissioning.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,20 @@ Maintainer: Miguel Luis and Gregory Cristian
* \remark In this application the value is automatically generated by calling
* BoardGetUniqueId function
*/
#define LORAWAN_DEVICE_EUI { IEEE_OUI, 0xFF, 0xEE, 0x00, 0x00, 0x19 }
#define LORAWAN_DEVICE_EUI { IEEE_OUI, 0x00, 0x00, 0x00, 0x00, 0x00 }

/*!
* Application IEEE EUI (big endian)
* PUT YOUR OWN CODE FROM TTN APP LIKE THAT: { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
*/
#define LORAWAN_APPLICATION_EUI { 0x70, 0xB3, 0xD5, 0x7E, 0xD0, 0x00, 0xA9, 0x4A }
//{ 0x70, 0xB3, 0xD5, 0x7E, 0xD0, 0x00, 0xA9, 0x4A }
#define LORAWAN_APPLICATION_EUI { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }

/*!
* AES encryption/decryption cipher application key
* PUT YOUR OWN CODE FROM TTN APP LIKE THAT: { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0 }
*/
#define LORAWAN_APPLICATION_KEY { 0x4F, 0x08, 0x60, 0x7C, 0xD9, 0x8A, 0x69, 0x30, 0xD3, 0x4C, 0x17, 0x28, 0x44, 0xD1, 0x7F, 0x7A }
//{ 0x4F, 0x08, 0x60, 0x7C, 0xD9, 0x8A, 0x69, 0x30, 0xD3, 0x4C, 0x17, 0x28, 0x44, 0xD1, 0x7F, 0x7A }
#define LORAWAN_APPLICATION_KEY { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0 }

/*!
* Current network ID
*/
Expand Down

0 comments on commit a6ae20f

Please sign in to comment.