From 04152b0762174f4d9c22c89f600175eea1b259a6 Mon Sep 17 00:00:00 2001 From: Charl Wentzel Date: Tue, 14 Sep 2021 16:40:53 +0200 Subject: [PATCH] redAcore: Buffer sizes updated --- LogCore.cpp | 2 +- UtilCore.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LogCore.cpp b/LogCore.cpp index f635eeb..92c7ab9 100644 --- a/LogCore.cpp +++ b/LogCore.cpp @@ -17,7 +17,7 @@ //--------------------------------------------------------------------------- // Global vars -char LogStr[5000]; // Temporary var to create log messages, globally available to save on memory operations +char LogStr[10000]; // Temporary var to create log messages, globally available to save on memory operations const char * LogOutputName[] = { "None", "Raw", "Normal", "Hex", "Bin" }; diff --git a/UtilCore.cpp b/UtilCore.cpp index beac708..54cc89a 100644 --- a/UtilCore.cpp +++ b/UtilCore.cpp @@ -17,7 +17,7 @@ //--------------------------------------------------------------------------- // Variable used to temp values with -static char ReturnStr[1000]; +static char ReturnStr[10000]; //---------------------------------------------------------------------------