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
Revision 17:660ab11cd0ad, committed 2015-11-25
- Comitter:
- gremond
- Date:
- Wed Nov 25 17:37:23 2015 +0000
- Parent:
- 16:590e0f613893
- Commit message:
- remove Ids
Changed in this revision
main.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 590e0f613893 -r 660ab11cd0ad main.cpp --- a/main.cpp Wed Nov 25 17:36:02 2015 +0000 +++ b/main.cpp Wed Nov 25 17:37:23 2015 +0000 @@ -37,16 +37,15 @@ /*! * Device address */ -static uint32_t DevAddr = 0x40001091; /// <<< Change here +static uint32_t DevAddr = 0x00000000; /// <<< Change here /*! * AES encryption/decryption cipher network session key */ static uint8_t NwkSKey[] = { -// 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// <<< Change here -// 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - 0x8c, 0x8f, 0x26, 0x76, 0x4c, 0x45, 0x7c, 0xd5, 0xf8, 0x7c, 0xd3, 0x6d, 0xc6, 0x83, 0x57, 0x0b + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// <<< Change here + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; /*! @@ -54,9 +53,8 @@ */ static uint8_t AppSKey[] = { -// 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// <<< Change here -// 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 - 0x8c, 0x8f, 0x26, 0x76, 0x4c, 0x45, 0x7c, 0xd5, 0xf8, 0x7c, 0xd3, 0x6d, 0xc6, 0x83, 0x57, 0x0b + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, /// <<< Change here + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };