summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266/main.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2017-03-10 17:14:21 +1100
committerDamien George <damien.p.george@gmail.com>2017-05-05 20:15:10 +1000
commite62235f8c755b270e478f403d8ac75c5192847ba (patch)
treeb79798ea643960cbbb7f109a47998c891f37d036 /esp8266/main.c
parent1b3e3724188af762ccab80cafc959a0e766983bc (diff)
downloadmicropython-e62235f8c755b270e478f403d8ac75c5192847ba.tar.gz
micropython-e62235f8c755b270e478f403d8ac75c5192847ba.zip
esp8266: Change default settings to mount flash at root dir.
Diffstat (limited to 'esp8266/main.c')
-rw-r--r--esp8266/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/esp8266/main.c b/esp8266/main.c
index 888e589704..e3188dfe40 100644
--- a/esp8266/main.c
+++ b/esp8266/main.c
@@ -50,8 +50,8 @@ STATIC void mp_reset(void) {
mp_init();
mp_obj_list_init(mp_sys_path, 0);
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_)); // current dir (or base dir of the script)
- mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash_slash_lib));
- mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash));
+ mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib));
+ mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_));
mp_obj_list_init(mp_sys_argv, 0);
MP_STATE_PORT(term_obj) = MP_OBJ_NULL;
MP_STATE_PORT(dupterm_arr_obj) = MP_OBJ_NULL;