TS: io: serial: no need for LIN functionality on TS port

This commit is contained in:
Andrey Gusakov 2024-06-17 13:14:32 +03:00 committed by rusefillc
parent de48a4f64a
commit 99fc15eadc
1 changed files with 1 additions and 1 deletions

View File

@ -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
};