From 3251a1d4a2d2cc20c8eb23c0f349ef3282517829 Mon Sep 17 00:00:00 2001 From: Starbeamrainbowlabs Date: Tue, 2 Jul 2019 13:06:27 +0100 Subject: [PATCH] Print transmit frame sequence counter to serial console --- iot/main/transmission.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/iot/main/transmission.cpp b/iot/main/transmission.cpp index 8bc1aef..9a6e437 100644 --- a/iot/main/transmission.cpp +++ b/iot/main/transmission.cpp @@ -62,6 +62,7 @@ void transmit_init() { // Restore the frame counters LMIC.seqnoUp = store_eeprom_uint32_retrieve(0); LMIC.seqnoDn = store_eeprom_uint32_retrieve(sizeof(uint32_t)); + Serial.println(LMIC.seqnoUp); } /**