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

Merge branch 'leonardo-usbserial' of https://github.com/cmaglie/Arduino

This commit is contained in:
Cristian Maglie 2015-11-24 16:34:27 +01:00
commit 1da7979984
2 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@ ARDUINO 1.6.7
* Stream: Optional lookahead and skipChar options added to parseInt and parseFloat,
parseFloat also support parsing floats without a leading 0,
Stream::find(char) added to SAM. Thanks @Chris--A.
* Leonardo/Micro (and other atmega32u4 based boards) now have SerialUSB alias for Serial
ARDUINO 1.6.6 - 2015.11.03

View File

@ -356,4 +356,7 @@ const uint8_t PROGMEM analog_pin_to_channel_PGM[] = {
#define SERIAL_PORT_HARDWARE Serial1
#define SERIAL_PORT_HARDWARE_OPEN Serial1
// Alias SerialUSB to Serial
#define SerialUSB SERIAL_PORT_USBVIRTUAL
#endif /* Pins_Arduino_h */