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.
2 parents acc2067 + 0ade989 commit d7ed6ecCopy full SHA for d7ed6ec
cores/arduino/CDC.cpp
@@ -115,7 +115,11 @@ bool WEAK CDC_Setup(Setup& setup)
115
116
117
int _serialPeek = -1;
118
-void Serial_::begin(uint16_t baud_count)
+void Serial_::begin(unsigned long baud_count)
119
+{
120
+}
121
+
122
+void Serial_::begin(unsigned long baud_count, byte config)
123
{
124
}
125
cores/arduino/USBAPI.h
@@ -36,7 +36,8 @@ struct ring_buffer;
36
class Serial_ : public Stream
37
38
public:
39
- void begin(uint16_t baud_count);
+ void begin(unsigned long);
40
+ void begin(unsigned long, uint8_t);
41
void end(void);
42
43
virtual int available(void);
0 commit comments