Print transmit frame sequence counter to serial console

This commit is contained in:
Starbeamrainbowlabs 2019-07-02 13:06:27 +01:00
parent c7012c621d
commit 3251a1d4a2
1 changed files with 1 additions and 0 deletions

View File

@ -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);
}
/**