Skip to content

Commit 949b366

Browse files
SuGliderCopilot
andauthored
fix(uart): fixes bad code formating
Co-authored-by: Copilot <[email protected]>
1 parent 1acfa42 commit 949b366

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
@@ -999,7 +999,7 @@ bool uartPinSignalInversion(uart_t *uart, uint32_t invMask, bool inverted) {
999999
UART_MUTEX_LOCK();
10001000
uint32_t _inv_mask = uart->inv_mask;
10011001
if (inverted) {
1002-
_inv_mask |= invMask;
1002+
_inv_mask |= invMask;
10031003
} else {
10041004
_inv_mask &= ~invMask;
10051005
}

0 commit comments

Comments
 (0)