From 685ebf1f40eff1c166fac6d638a16d47fa13d6af Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 13 Jun 2020 11:54:19 -0400 Subject: [PATCH] making dead code! --- firmware/console/binary/tunerstudio.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/firmware/console/binary/tunerstudio.cpp b/firmware/console/binary/tunerstudio.cpp index 83b3350be0..b3ac26f4bc 100644 --- a/firmware/console/binary/tunerstudio.cpp +++ b/firmware/console/binary/tunerstudio.cpp @@ -367,7 +367,9 @@ static void handleCrc32Check(ts_channel_s *tsChannel, ts_response_format_e mode, uint32_t crc = SWAP_UINT32(crc32((void * ) getWorkingPageAddr(), count)); - scheduleMsg(&tsLogger, "CRC32 response: %x", crc); +#if 0 + scheduleMsg(&tsLogger, "Sending CRC32 response: %x", crc); +#endif sr5SendResponse(tsChannel, mode, (const uint8_t *) &crc, 4); }