From 77f5b712579bb7f732b043781e2df340a220557f Mon Sep 17 00:00:00 2001 From: Lubos Petrovic Date: Wed, 23 Dec 2020 09:31:58 +0100 Subject: [PATCH] fix --- CommObd2Can.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CommObd2Can.cpp b/CommObd2Can.cpp index c6bf9b1..48aa8b8 100644 --- a/CommObd2Can.cpp +++ b/CommObd2Can.cpp @@ -77,7 +77,7 @@ void CommObd2Can::mainLoop() { delay(1); // apply timeout for next frames loop too if (lastDataSent != 0 && (unsigned long)(millis() - lastDataSent) > 100) { - Serial.print("CAN execution timeout (multiframe message)."); + Serial.print("CAN execution timeout (multiframe message).\n"); break; } } @@ -88,7 +88,7 @@ void CommObd2Can::mainLoop() { } } if (lastDataSent != 0 && (unsigned long)(millis() - lastDataSent) > 100) { - Serial.print("CAN execution timeout. Continue with next command."); + Serial.print("CAN execution timeout. Continue with next command.\n"); liveData->canSendNextAtCommand = true; return; }