Skip to content

Commit b4a6638

Browse files
committed
feat: fixes end()
1 parent b70de02 commit b4a6638

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/HardwareSerial.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ class HardwareSerial: public Stream
252252
// invert will invert RX/TX polarity
253253
// rxfifo_full_thrhd if the UART Flow Control Threshold in the UART FIFO (max 127)
254254
void begin(unsigned long baud, uint32_t config=SERIAL_8N1, int8_t rxPin=-1, int8_t txPin=-1, bool invert=false, unsigned long timeout_ms = 20000UL, uint8_t rxfifo_full_thrhd = 112);
255-
void end(bool fullyTerminate = true);
255+
void end(void);
256256
void updateBaudRate(unsigned long baud);
257257
int available(void);
258258
int availableForWrite(void);

0 commit comments

Comments
 (0)