From 520b22d029e3b8345ba08287100ab4594c9d2951 Mon Sep 17 00:00:00 2001 From: Timm Bogner <64260873+timmbogner@users.noreply.github.com> Date: Sat, 4 Mar 2023 10:21:01 -0600 Subject: [PATCH] actually remove uniqueID --- src/fdrs_node_lora.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fdrs_node_lora.h b/src/fdrs_node_lora.h index c5eb906..f20798f 100644 --- a/src/fdrs_node_lora.h +++ b/src/fdrs_node_lora.h @@ -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 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 msgOkLoRa = 0; // Number of total LoRa packets with valid CRC