clean board uart read & write

This commit is contained in:
hathach
2019-03-20 20:58:27 +07:00
parent da55610f43
commit 20fb416783
10 changed files with 83 additions and 43 deletions
+7 -3
View File
@@ -247,14 +247,18 @@ uint32_t board_buttons(void)
return ret;
}
uint8_t board_uart_getchar(void)
int board_uart_read(uint8_t* buf, int len)
{
(void) buf;
(void) len;
return 0;
}
void board_uart_putchar(uint8_t c)
int board_uart_write(void const * buf, int len)
{
(void) c;
(void) buf;
(void) len;
return 0;
}
#ifdef SOFTDEVICE_PRESENT