Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-10 | Added license for avr/HardwareSerial. | Cristian Maglie | |
See #1847 | |||
2014-01-29 | Reorder HardwareSerial init to fix compiler warn | Matt Robinson | |
Switch the tx and rx buffer head/tail entries in the HardwareSerial initialisation list so that they match the order the fields are defined in. This fixes a compiler warning (repeated for each of the HardwareSerial source files the header is used in). | |||
2014-01-28 | Clean up unused var from HardwareSerial_private.h | Matt Robinson | |
2014-01-22 | Inlined HardwareSerial calls to RX ISR. | Cristian Maglie | |
Moreover, declaring pointers-to-registers as const and using initializer list in class constructor allows the compiler to further improve inlining performance. This change recovers about 50 bytes of program space on single-UART devices. See #1711 |