Pin map definition cleanup.

This commit is contained in:
Sonny Jeon
2013-08-20 20:05:16 -06:00
parent e24e67ffe2
commit 0894183991
3 changed files with 10 additions and 10 deletions

View File

@ -91,7 +91,7 @@ void serial_write(uint8_t data) {
}
// Data Register Empty Interrupt handler
ISR(Serial_UDRE_vect)
ISR(SERIAL_UDRE)
{
// Temporary tx_buffer_tail (to optimize for volatile)
uint8_t tail = tx_buffer_tail;
@ -140,7 +140,7 @@ uint8_t serial_read()
}
}
ISR(Serial_RX_vect)
ISR(SERIAL_RX)
{
uint8_t data = UDR0;
uint8_t next_head;