Skip to content

Commit 01921d2

Browse files
committed
adds Hardware Flow Control mode and CTS/RTS pin setting
1 parent 6ab86c6 commit 01921d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/HardwareSerial.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ void HardwareSerial::begin(unsigned long baud, uint32_t config, int8_t rxPin, in
168168

169169
if(detectedBaudRate) {
170170
delay(100); // Give some time...
171-
_uart = uartBegin(_uart_nr, detectedBaudRate, config, rxPin, txPin, _rxBufferSize, invert, rxfifo_full_thrhd);
171+
_uart = uartBegin(_uart_nr, detectedBaudRate, config, rxPin, txPin, _rxBufferSize, invert, rxfifo_full_thrhd);
172172
} else {
173173
log_e("Could not detect baudrate. Serial data at the port must be present within the timeout for detection to be possible");
174174
_uart = NULL;

0 commit comments

Comments
 (0)