Skip to content

Commit f85e5f2

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

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
@@ -1001,7 +1001,7 @@ bool uartPinSignalInversion(uart_t *uart, uint32_t invMask, bool inverted) {
10011001
if (inverted) {
10021002
_inv_mask |= invMask;
10031003
} else {
1004-
_inv_mask &= ~invMask;
1004+
_inv_mask &= ~invMask;
10051005
}
10061006
bool retCode = ESP_OK == uart_set_line_inverse(uart->num, _inv_mask);
10071007
if (retCode) {

0 commit comments

Comments
 (0)