unix/unix_mphal: Be sure to wrap dupterm code with MICROPY_PY_OS_DUPTERM.

pull/1776/head
Paul Sokolovsky 2016-01-01 22:55:45 +02:00
rodzic 8fa9264430
commit 98f7729848
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -108,6 +108,7 @@ void mp_hal_stdio_mode_orig(void) {
#endif
#if MICROPY_PY_OS_DUPTERM
static int call_dupterm_read(void) {
nlr_buf_t nlr;
if (nlr_push(&nlr) == 0) {
@ -138,6 +139,7 @@ static int call_dupterm_read(void) {
return -1;
}
#endif
int mp_hal_stdin_rx_chr(void) {
unsigned char c;