Merge branch 'master' into ide-1.5.x

This commit is contained in:
Cristian Maglie 2014-06-19 17:01:53 +02:00
commit 1a305cdc45
2 changed files with 4 additions and 1 deletions

View File

@ -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)

View File

@ -36,8 +36,9 @@ struct ring_buffer;
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);