diff options
author | Damien George <damien.p.george@gmail.com> | 2015-10-19 21:57:41 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-10-19 21:57:41 +0100 |
commit | 83158e0e7f12d0454bb5efb27cd9071123e3be75 (patch) | |
tree | 252c286737bcc63cf79ab54235c8449b45b71edb /stmhal/portmodules.h | |
parent | d8066e999d7ed27a2ebef449926d9772119296cf (diff) | |
download | micropython-83158e0e7f12d0454bb5efb27cd9071123e3be75.tar.gz micropython-83158e0e7f12d0454bb5efb27cd9071123e3be75.zip |
stmhal: Implement os.dupterm (was pyb.repl_uart).
pyb.repl_uart still exists but points to os.dupterm.
Diffstat (limited to 'stmhal/portmodules.h')
-rw-r--r-- | stmhal/portmodules.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stmhal/portmodules.h b/stmhal/portmodules.h index 821e7c5b66..68ae2f47ce 100644 --- a/stmhal/portmodules.h +++ b/stmhal/portmodules.h @@ -37,3 +37,4 @@ MP_DECLARE_CONST_FUN_OBJ(time_sleep_ms_obj); MP_DECLARE_CONST_FUN_OBJ(time_sleep_us_obj); MP_DECLARE_CONST_FUN_OBJ(mod_os_sync_obj); +MP_DECLARE_CONST_FUN_OBJ(mod_os_dupterm_obj); |