From 8b6022649766c1fbe30510be87961e01b3b93de2 Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Sun, 23 Jan 2022 01:05:07 -0800 Subject: [PATCH] set the routerMessage buffer to Constants_DATA_PAYLOAD_LEN --- src/plugins/esp32/StoreForwardPlugin.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/esp32/StoreForwardPlugin.h b/src/plugins/esp32/StoreForwardPlugin.h index dd252dbae..ec2dc5605 100644 --- a/src/plugins/esp32/StoreForwardPlugin.h +++ b/src/plugins/esp32/StoreForwardPlugin.h @@ -23,7 +23,7 @@ class StoreForwardPlugin : public SinglePortPlugin, private concurrency::OSThrea // bool firstTime = 1; bool busy = 0; uint32_t busyTo; - char routerMessage[80]; + char routerMessage[Constants_DATA_PAYLOAD_LEN]; uint32_t receivedRecord[50][2] = {{0}};