actually remove uniqueID

This commit is contained in:
Timm Bogner 2023-03-04 10:21:01 -06:00
parent db767a770f
commit 520b22d029

View File

@ -86,7 +86,7 @@ volatile bool operationDone = false; // flag to indicate that a packet was sent
unsigned long receivedLoRaMsg = 0; // Number of total LoRa packets destined for us and of valid size unsigned long receivedLoRaMsg = 0; // Number of total LoRa packets destined for us and of valid size
unsigned long ackOkLoRaMsg = 0; // Number of total LoRa packets with valid CRC unsigned long ackOkLoRaMsg = 0; // Number of total LoRa packets with valid CRC
uint16_t LoRaAddress = ((UniqueID8[6] << 8) | UniqueID8[7]); uint16_t LoRaAddress;
unsigned long transmitLoRaMsgwAck = 0; // Number of total LoRa packets destined for us and of valid size unsigned long transmitLoRaMsgwAck = 0; // Number of total LoRa packets destined for us and of valid size
unsigned long msgOkLoRa = 0; // Number of total LoRa packets with valid CRC unsigned long msgOkLoRa = 0; // Number of total LoRa packets with valid CRC