mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-29 18:52:13 +01:00
USB CDC two argument begin()
Add two argument form of Serial_::begin Signed-off-by: Paul Brook <paul@nowt.org>
This commit is contained in:
parent
1162a45fa8
commit
f53fcdd254
@ -134,6 +134,10 @@ void Serial_::begin(unsigned long baud_count)
|
||||
{
|
||||
}
|
||||
|
||||
void Serial_::begin(unsigned long baud_count, byte config)
|
||||
{
|
||||
}
|
||||
|
||||
void Serial_::end(void)
|
||||
{
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ private:
|
||||
ring_buffer *_cdc_rx_buffer;
|
||||
public:
|
||||
void begin(unsigned long);
|
||||
void begin(unsigned long, uint8_t);
|
||||
void end(void);
|
||||
|
||||
virtual int available(void);
|
||||
|
Loading…
x
Reference in New Issue
Block a user