Updated revision log

This commit is contained in:
Cristian Maglie 2014-01-28 18:33:08 +01:00
parent 5b48b1e4fe
commit bcfa1a7479
1 changed files with 11 additions and 0 deletions

View File

@ -13,6 +13,17 @@ ARDUINO 1.5.6 BETA
* Ethernet: added operator == for EthernetClient class (Norbert Truchsess)
[core]
* avr: Pile of HardwareSerial improvements (Matthijs Kooijman)
- Remove duplicate code from HardwareSerial::begin() methods
- Simplify HardwareSerial::begin() (Rob Tillaart)
- Use constants for register bit positions in HardwareSerial
- Fix HardwareSerial::flush() when interrupts are kept disabled for a while
- Fix lockup when writing to HardwareSerial with interrupts disabled
- Disable the UDRE interrupt sooner in HardwareSerial (Nathan Blackwell)
- Put each HardwareSerial instance in its own .cpp file in order to save memory
for unused UARTS
- In HardwareSerial::write, bypass the queue when it's empty in order to
improve throughput when using high baudrates (KurtE)
* sam: Fixed wrap-around bug in delay() (Mark Tillotson)
* sam: Fixed regression in analogRead() (fails to read multiple channels) (Mark Tillotson)
* sam: Optimized delayMicroseconds() (Rob Tillaart) #1121