From 99fc15eadcabd7c8f4ae276429d42b65f6e20aae Mon Sep 17 00:00:00 2001 From: Andrey Gusakov Date: Mon, 17 Jun 2024 13:14:32 +0300 Subject: [PATCH] TS: io: serial: no need for LIN functionality on TS port --- firmware/console/binary/tunerstudio_io_serial.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/console/binary/tunerstudio_io_serial.cpp b/firmware/console/binary/tunerstudio_io_serial.cpp index 5b1f85157c..e18d849f97 100644 --- a/firmware/console/binary/tunerstudio_io_serial.cpp +++ b/firmware/console/binary/tunerstudio_io_serial.cpp @@ -11,7 +11,7 @@ void SerialTsChannel::start(uint32_t baud) { #if EFI_PROD_CODE .speed = baud, .cr1 = 0, - .cr2 = USART_CR2_STOP1_BITS | USART_CR2_LINEN, + .cr2 = USART_CR2_STOP1_BITS, .cr3 = 0 #endif // EFI_PROD_CODE };