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 dc86455 commit a21d92eCopy full SHA for a21d92e
hardware/arduino/sam/cores/arduino/USB/CDC.cpp
@@ -149,6 +149,10 @@ void Serial_::begin(uint32_t baud_count)
149
{
150
}
151
152
+void Serial_::begin(uint32_t baud_count, uint8_t config)
153
+{
154
+}
155
+
156
void Serial_::end(void)
157
158
hardware/arduino/sam/cores/arduino/USB/USBAPI.h
@@ -49,6 +49,7 @@ class Serial_ : public Stream
49
RingBuffer *_cdc_rx_buffer;
50
public:
51
void begin(uint32_t baud_count);
52
+ void begin(uint32_t baud_count, uint8_t config);
53
void end(void);
54
55
virtual int available(void);
0 commit comments