1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

cpu/native: add empty uart/power_x functions

This commit is contained in:
Hauke Petersen 2018-03-02 10:32:03 +01:00
parent 2fc724db7e
commit 4fd16b0bcc

View File

@ -177,3 +177,15 @@ void uart_write(uart_t uart, const uint8_t *data, size_t len)
_native_write(tty_fds[uart], data, len);
}
void uart_poweron(uart_t uart)
{
(void)uart;
/* not implemented (yet) */
}
void uart_poweroff(uart_t uart)
{
(void)uart;
/* not implemented (yet) */
}