From 7b5357a8c22f0c825df19d0a48b7f8c660406ff6 Mon Sep 17 00:00:00 2001 From: Timm Bogner <64260873+timmbogner@users.noreply.github.com> Date: Wed, 22 Mar 2023 12:58:15 -0500 Subject: [PATCH] change lora_size un-breaks release of buffer large enough to necessitate multiple LoRa packets --- src/fdrs_gateway_lora.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fdrs_gateway_lora.h b/src/fdrs_gateway_lora.h index 3d4dd22..ddae9ba 100644 --- a/src/fdrs_gateway_lora.h +++ b/src/fdrs_gateway_lora.h @@ -72,7 +72,7 @@ #define FDRS_LORA_INTERVAL GLOBAL_LORA_INTERVAL #endif // LORA_INTERVAL -const uint8_t lora_size = 256 / sizeof(DataReading); +const uint8_t lora_size = 250 / sizeof(DataReading); #ifdef CUSTOM_SPI #ifdef ARDUINO_ARCH_RP2040