Skip to content

Commit 3992555

Browse files
SuGliderCopilot
andauthored
fix(uart): fixes extra spaces
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent bfad07c commit 3992555

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/esp32-hal-uart.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1030,7 +1030,7 @@ bool uartSetTxInvert(uart_t *uart, bool invert) {
10301030
bool uartSetCtsInvert(uart_t *uart, bool invert) {
10311031
if (uartPinSignalInversion(uart, UART_SIGNAL_CTS_INV, invert)) {
10321032
log_v("UART%d: CTS signal is now inverted", uart->num);
1033-
return true;
1033+
return true;
10341034
}
10351035
return false;
10361036
}

0 commit comments

Comments
 (0)