feat: update keys and eui for lorawan 1.1 compatibility (prev. 1.0.3)

This commit is contained in:
Alexis Fourmaux 2026-05-13 17:21:05 +02:00
parent 285c6c5805
commit 7a07bb2522

View file

@ -3,9 +3,11 @@
#define MAX_RESTART 1
#define MAX_FATAL_RESTART 3
uint64_t joinEUI = 0xbf1af0d0dd808ba2;
uint64_t joinEUI = 0x911b5c62b4dc2079;
uint64_t devEUI = 0x0586fe41112d83d9;
uint8_t appKey[] = {
0x0b, 0x84, 0xb4, 0x04, 0x0f, 0xd5, 0x56, 0x1b,
0x00, 0x53, 0x94, 0x22, 0xc1, 0xf1, 0x4f, 0xd6};
uint8_t *nwkKey = appKey;
0x81, 0x24, 0xbe, 0x86, 0x59, 0x06, 0xa4, 0x4f,
0xe7, 0x39, 0xd6, 0x0f, 0xd6, 0x88, 0x91, 0xcc};
uint8_t nwkKey[] = {
0xb8, 0x30, 0x20, 0xf2, 0x52, 0x3b, 0xd2, 0xb0,
0x1d, 0x12, 0xe1, 0xb9, 0xe7, 0xe1, 0xb0, 0xde};