1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Update USBAPI.h

Fixes bug where Serial.read() would always return 0 as the first byte.
This commit is contained in:
Embedded Micro 2014-06-10 08:48:23 -07:00
parent 09d0843ff3
commit 9ac7e30252

View File

@ -28,7 +28,7 @@ extern USBDevice_ USBDevice;
class Serial_ : public Stream
{
private:
int peek_buffer;
int peek_buffer = -1;
public:
void begin(unsigned long);
void begin(unsigned long, uint8_t);