diff --git a/src/main/drivers/stm32/serial_uart_stm32f4xx.c b/src/main/drivers/stm32/serial_uart_stm32f4xx.c index 1f5dbf5b76..b2a9ac00e1 100644 --- a/src/main/drivers/stm32/serial_uart_stm32f4xx.c +++ b/src/main/drivers/stm32/serial_uart_stm32f4xx.c @@ -390,9 +390,6 @@ void uartIrqHandler(uartPort_t *s) s->port.txBufferTail = (s->port.txBufferTail + 1) % s->port.txBufferSize; } else { USART_ITConfig(s->USARTx, USART_IT_TXE, DISABLE); - - // Switch TX to an input with pullup so it's state can be monitored - uartTxMonitor(s); } }