unix/unix_mphal: Be sure to wrap dupterm code with MICROPY_PY_OS_DUPTERM.
This commit is contained in:
parent
8fa9264430
commit
98f7729848
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user