diff options
Diffstat (limited to 'src/atsam/serial.c')
-rw-r--r-- | src/atsam/serial.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/atsam/serial.c b/src/atsam/serial.c index c87539ad..6a511122 100644 --- a/src/atsam/serial.c +++ b/src/atsam/serial.c @@ -10,19 +10,19 @@ #include "sched.h" // DECL_INIT // Serial port pins -#if CONFIG_MACH_SAM3X8E +#if CONFIG_MACH_SAM3X #define Serial_IRQ_Handler UART_Handler static Uart * const Port = UART; static const uint32_t Pmc_id = ID_UART, Irq_id = UART_IRQn; static const uint32_t rx_pin = GPIO('A', 8); static const uint32_t tx_pin = GPIO('A', 9); -#elif CONFIG_MACH_SAM4S8C +#elif CONFIG_MACH_SAM4S #define Serial_IRQ_Handler UART1_Handler static Uart * const Port = UART1; static const uint32_t Pmc_id = ID_UART1, Irq_id = UART1_IRQn; static const uint32_t rx_pin = GPIO('B', 2); static const uint32_t tx_pin = GPIO('B', 3); -#elif CONFIG_MACH_SAM4E8E +#elif CONFIG_MACH_SAM4E #define Serial_IRQ_Handler UART0_Handler static Uart * const Port = UART0; static const uint32_t Pmc_id = ID_UART0, Irq_id = UART0_IRQn; |