8000 Accidentally removed some args whilest formatting the code · timkoers/arduino-esp32@d63d896 · GitHub
[go: up one dir, main page]

Skip to content

Commit d63d896

Browse files
committed
Accidentally removed some args whilest formatting the code
1 parent 02b29fd commit d63d896

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
@@ -177,7 +177,7 @@ void uartAttachRx(uart_t* uart, uint8_t rxPin, bool inverted)
177177
}
178178
pinMode(rxPin, INPUT);
179179
pinMatrixInAttach(rxPin, UART_RXD_IDX(uart->num), inverted);
180-
uartEnableInterrupt(uart);
180+
uartEnableInterrupt(uart, NULL, NULL, NULL);
181181
}
182182

183183
void uartAttachTx(uart_t* uart, uint8_t txPin, bool inverted)

0 commit comments

Comments
 (0)
0