aboutsummaryrefslogtreecommitdiff
path: root/extmod/misc.h
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2022-03-03 23:15:59 +1100
committerDamien George <damien@micropython.org>2022-03-09 10:03:23 +1100
commit11b77263ef9e8f897c7186f10f4ef579adde9195 (patch)
tree71c2ee44dc4671ea61ad1c877c527ed52022c7f0 /extmod/misc.h
parent9a3e1a18081c8c6a08e2a2efcfefcc4d96e9a8da (diff)
stm32/moduos: Convert module to use extmod version.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'extmod/misc.h')
-rw-r--r--extmod/misc.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/extmod/misc.h b/extmod/misc.h
index 40b091e5f..a9392aa10 100644
--- a/extmod/misc.h
+++ b/extmod/misc.h
@@ -36,6 +36,7 @@ MP_DECLARE_CONST_FUN_OBJ_VAR_BETWEEN(mp_uos_dupterm_obj);
#if MICROPY_PY_OS_DUPTERM
bool mp_uos_dupterm_is_builtin_stream(mp_const_obj_t stream);
+void mp_uos_dupterm_stream_detached_attached(mp_obj_t stream_detached, mp_obj_t stream_attached);
uintptr_t mp_uos_dupterm_poll(uintptr_t poll_flags);
int mp_uos_dupterm_rx_chr(void);
void mp_uos_dupterm_tx_strn(const char *str, size_t len);