We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dccc005 commit 7be11ceCopy full SHA for 7be11ce
cores/esp8266/HardwareSerial.h
@@ -73,18 +73,23 @@ class HardwareSerial: public Stream
73
74
void begin(unsigned long baud)
75
{
76
- begin(baud, SERIAL_8N1, SERIAL_FULL, 1);
+ begin(baud, SERIAL_8N1, SERIAL_FULL, 1, false);
77
}
78
void begin(unsigned long baud, SerialConfig config)
79
80
- begin(baud, config, SERIAL_FULL, 1);
+ begin(baud, config, SERIAL_FULL, 1, false);
81
82
void begin(unsigned long baud, SerialConfig config, SerialMode mode)
83
84
- begin(baud, config, mode, 1);
+ begin(baud, config, mode, 1, false);
85
86
87
- void begin(unsigned long baud, SerialConfig config, SerialMode mode, uint8_t tx_pin, bool invert=false);
+ void begin(unsigned long baud, SerialConfig config, SerialMode mode, uint8_t tx_pin)
88
+ {
89
+ begin(baud, config, mode, tx_pin, false);
90
+ }
91
+
92
+ void begin(unsigned long baud, SerialConfig config, SerialMode mode, uint8_t tx_pin, bool invert);
93
94
void end();
95
0 commit comments