From 2155db63d28b938a4ab43c9283f54275b0cea242 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Tue, 11 Jun 2024 14:03:01 -0400 Subject: [PATCH] only: one step back --- firmware/console/binary/tunerstudio.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 5fc7099272..a478faeb3c 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -157,9 +157,9 @@ static void sendOkResponse(TsChannelBase *tsChannel) { } void sendErrorCode(TsChannelBase *tsChannel, uint8_t code, const char *msg) { - if (msg != DO_NOT_LOG) { - efiPrintf("TS <- Err: %d [%s]", code, msg); - } +//TODO uncomment once I have test it myself if (msg != DO_NOT_LOG) { +// efiPrintf("TS <- Err: %d [%s]", code, msg); +// } tsChannel->writeCrcResponse(code); }