1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

cpu/atmega2560: ISR UART typo

This commit is contained in:
kYc0o 2016-06-03 02:32:15 +02:00
parent 5fc67747e6
commit 7f0a1a7b5a

View File

@ -105,7 +105,7 @@ ISR(UART_0_ISR, ISR_BLOCK)
}
#endif /* UART_0_ISR */
#if UART_1_ISR
#ifdef UART_1_ISR
ISR(UART_1_ISR, ISR_BLOCK)
{
__enter_isr();
@ -114,7 +114,7 @@ ISR(UART_1_ISR, ISR_BLOCK)
}
#endif /* UART_1_ISR */
#if UART_2_ISR
#ifdef UART_2_ISR
ISR(UART_2_ISR, ISR_BLOCK)
{
__enter_isr();
@ -123,7 +123,7 @@ ISR(UART_2_ISR, ISR_BLOCK)
}
#endif /* UART_2_ISR */
#if UART_3_ISR
#ifdef UART_3_ISR
ISR(UART_3_ISR, ISR_BLOCK)
{
__enter_isr();