From 97c73b3a4e45c3ba519412bc0725f66d9c1a6f17 Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sun, 29 May 2022 10:53:10 -0400 Subject: [PATCH] hard requirement for console version match #4187 --- firmware/console/binary/tunerstudio_io.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/console/binary/tunerstudio_io.cpp b/firmware/console/binary/tunerstudio_io.cpp index 3acac21d69..6c216f1fae 100644 --- a/firmware/console/binary/tunerstudio_io.cpp +++ b/firmware/console/binary/tunerstudio_io.cpp @@ -90,7 +90,7 @@ TsChannelBase::TsChannelBase(const char *name) { void TsChannelBase::assertPacketSize(size_t size, bool allowLongPackets) { if (isBigPacket(size) && !allowLongPackets) { - firmwareError(OBD_PCM_Processor_Fault, "tried to send disallowed long packet of size %d", size); + firmwareError(OBD_PCM_Processor_Fault, "[USE PROPER CONSOLE VERSION ] disallowed long packet of size %d", size); } }