From d17926db710189db97a49e9b2e72d782fc404231 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 30 Mar 2014 13:35:08 +0100 Subject: Rename rt_* to mp_*. Mostly just a global search and replace. Except rt_is_true which becomes mp_obj_is_true. Still would like to tidy up some of the names, but this will do for now. --- stmhal/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'stmhal/main.c') diff --git a/stmhal/main.c b/stmhal/main.c index 9efaaec76..d6d9b9ed7 100644 --- a/stmhal/main.c +++ b/stmhal/main.c @@ -251,12 +251,12 @@ soft_reset: // Micro Python init qstr_init(); - rt_init(); + mp_init(); mp_obj_t def_path[3]; def_path[0] = MP_OBJ_NEW_QSTR(MP_QSTR_0_colon__slash_); def_path[1] = MP_OBJ_NEW_QSTR(MP_QSTR_0_colon__slash_src); def_path[2] = MP_OBJ_NEW_QSTR(MP_QSTR_0_colon__slash_lib); - sys_path = mp_obj_new_list(3, def_path); + mp_sys_path = mp_obj_new_list(3, def_path); readline_init(); -- cgit v1.2.3