all: Rename mp_umodule*, mp_module_umodule* to remove the "u" prefix.

This work was funded through GitHub Sponsors.

Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
This commit is contained in:
Jim Mussared
2022-08-18 14:47:56 +10:00
parent dfe232d000
commit 1bf2dcb15e
67 changed files with 280 additions and 280 deletions

View File

@@ -187,7 +187,7 @@ main_term:;
void mp_hal_stdout_tx_strn(const char *str, size_t len) {
ssize_t ret;
MP_HAL_RETRY_SYSCALL(ret, write(STDOUT_FILENO, str, len), {});
mp_uos_dupterm_tx_strn(str, len);
mp_os_dupterm_tx_strn(str, len);
}
// cooked is same as uncooked because the terminal does some postprocessing