attmapper/src/config.example.h

13 lines
931 B
C
Raw Permalink Normal View History

2021-05-15 17:47:57 +00:00
//*******************************************************************
2021-05-15 17:53:45 +00:00
// LoRa Config - Put Your Keys Here! MSB Left for all three
2021-05-15 17:47:57 +00:00
//*******************************************************************
// Primary Keyset, will be used on Startup
unsigned char NwkSkey_1[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
unsigned char AppSkey_1[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
unsigned char DevAddr_1[4] = { 0x00, 0x00, 0x00, 0x00 };
// Secondary ABP Keyset, can be selected via Setup
unsigned char NwkSkey_2[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
unsigned char AppSkey_2[16] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
unsigned char DevAddr_2[4] = { 0x00, 0x00, 0x00, 0x00 };