diff --git a/Software/src/debugger.cpp b/Software/src/debugger.cpp index e2d3bea..5ef90f5 100644 --- a/Software/src/debugger.cpp +++ b/Software/src/debugger.cpp @@ -151,7 +151,7 @@ void Debug_pushMessage(const char *format, ...) // Check if either the Serial or WebUI debug port is enabled if ((DebuggerStatus[dbg_Serial] == enabled) || (DebuggerStatus[dbg_Webui] == enabled)) { - char buff[64]; // Buffer to hold the formatted message + char buff[128]; // Buffer to hold the formatted message va_list arg; // Variable argument list for vsnprintf va_start(arg, format);