File tree Expand file tree Collapse file tree 2 files changed +8
-3
lines changed
hardware/arduino/cores/arduino Expand file tree Collapse file tree 2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,11 @@ bool WEAK CDC_Setup(Setup& setup)
130
130
131
131
132
132
int _serialPeek = -1 ;
133
- void Serial_::begin (uint16_t baud_count)
133
+ void Serial_::begin (unsigned long baud_count)
134
+ {
135
+ }
136
+
137
+ void Serial_::begin (unsigned long baud_count, byte config)
134
138
{
135
139
}
136
140
Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ class Serial_ : public Stream
30
30
private:
31
31
ring_buffer *_cdc_rx_buffer;
32
32
public:
33
- void begin (uint16_t baud_count);
33
+ void begin (unsigned long );
34
+ void begin (unsigned long , uint8_t );
34
35
void end (void );
35
36
36
37
virtual int available (void );
@@ -193,4 +194,4 @@ void USB_Flush(uint8_t ep);
193
194
194
195
#endif
195
196
196
- #endif /* if defined(USBCON) */
197
+ #endif /* if defined(USBCON) */
You can’t perform that action at this time.
0 commit comments