1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-07-07 06:01:35 +03:00

Fix initialisation, fix HardwareSerial, add esptool.py flashing

This commit is contained in:
Ivan Grokhotkov
2014-11-25 09:58:14 +03:00
parent 66cac95b4b
commit 39e087a19e
5 changed files with 18 additions and 8 deletions

View File

@ -80,7 +80,7 @@ class HardwareSerial : public Stream
unsigned char _tx_buffer[SERIAL_TX_BUFFER_SIZE];
public:
HardwareSerial() : _uart(0) { }
HardwareSerial();
void begin(unsigned long baud) { begin(baud, 0); }
void begin(unsigned long, uint8_t);