diff --git a/Firmware/mmu2.cpp b/Firmware/mmu2.cpp index 11addd0f7..2e59e0c0d 100644 --- a/Firmware/mmu2.cpp +++ b/Firmware/mmu2.cpp @@ -633,10 +633,10 @@ void MMU2::ReportError(ErrorCode ec) { void MMU2::ReportProgress(ProgressCode pc) { ReportProgressHook((CommandInProgress)logic.CommandInProgress(), (uint16_t)pc); - + // Log progress - example: MMU2:P=123 EngageIdler char msg[64]; - int len = snprintf(msg, sizeof(msg), "MMU2:P=%hu", (uint16_t)pc); + int len = snprintf(msg, sizeof(msg), "MMU2:P=%hu ", (uint16_t)pc); // Append a human readable form of the progress code TranslateProgress((uint16_t)pc, &msg[len], 64 - len);