Fixed regression in USBAPI and CDC (xaljox)
See:
9ac7e30252 (commitcomment-6718676)
This commit is contained in:
parent
12219b37d5
commit
f599d51996
|
@ -116,10 +116,12 @@ bool WEAK CDC_Setup(Setup& setup)
|
|||
|
||||
void Serial_::begin(unsigned long baud_count)
|
||||
{
|
||||
peek_buffer = -1;
|
||||
}
|
||||
|
||||
void Serial_::begin(unsigned long baud_count, byte config)
|
||||
{
|
||||
peek_buffer = -1;
|
||||
}
|
||||
|
||||
void Serial_::end(void)
|
||||
|
|
|
@ -28,8 +28,9 @@ extern USBDevice_ USBDevice;
|
|||
class Serial_ : public Stream
|
||||
{
|
||||
private:
|
||||
int peek_buffer = -1;
|
||||
int peek_buffer;
|
||||
public:
|
||||
Serial_() { peek_buffer = -1; };
|
||||
void begin(unsigned long);
|
||||
void begin(unsigned long, uint8_t);
|
||||
void end(void);
|
||||
|
|
Loading…
Reference in New Issue