nrf/mphalport: Use wfi to save power while waiting at the UART REPL.

pull/4404/head^2
Damien George 2019-05-22 12:46:09 +10:00
rodzic 456c89f749
commit 9cf1cbb057
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -58,6 +58,7 @@ int mp_hal_stdin_rx_chr(void) {
if (MP_STATE_PORT(board_stdio_uart) != NULL && uart_rx_any(MP_STATE_PORT(board_stdio_uart))) {
return uart_rx_char(MP_STATE_PORT(board_stdio_uart));
}
__WFI();
}
return 0;