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:
parent
2fc724db7e
commit
4fd16b0bcc
@ -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) */
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user