From 7a07bb2522b3fb99ae0343d0adbaee2cdcec0503 Mon Sep 17 00:00:00 2001 From: Alexis Fourmaux Date: Wed, 13 May 2026 17:21:05 +0200 Subject: [PATCH] feat: update keys and eui for lorawan 1.1 compatibility (prev. 1.0.3) --- src/config.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/config.h b/src/config.h index 344784f..f2b60a7 100644 --- a/src/config.h +++ b/src/config.h @@ -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; \ No newline at end of file + 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}; \ No newline at end of file