cpu/lpc2487: add empty uart/power_x functions

This commit is contained in:
Hauke Petersen 2018-03-02 10:31:45 +01:00
parent 8ac3465ba7
commit 2fc724db7e

View File

@ -98,3 +98,15 @@ void UART0_IRQHandler(void)
VICVectAddr = 0; /* Acknowledge Interrupt */
}
void uart_poweron(uart_t uart)
{
(void)uart;
/* not implemented (yet) */
}
void uart_poweroff(uart_t uart)
{
(void)uart;
/* not implemented (yet) */
}