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 1162a45 commit f53fcddCopy full SHA for f53fcdd
hardware/arduino/cores/arduino/CDC.cpp
@@ -134,6 +134,10 @@ void Serial_::begin(unsigned long baud_count)
134
{
135
}
136
137
+void Serial_::begin(unsigned long baud_count, byte config)
138
+{
139
+}
140
+
141
void Serial_::end(void)
142
143
hardware/arduino/cores/arduino/USBAPI.h
@@ -31,6 +31,7 @@ class Serial_ : public Stream
31
ring_buffer *_cdc_rx_buffer;
32
public:
33
void begin(unsigned long);
34
+ void begin(unsigned long, uint8_t);
35
void end(void);
36
37
virtual int available(void);
0 commit comments