File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ void mp_task(void *pvParameter) {
74
74
mp_init ();
75
75
mp_obj_list_init (mp_sys_path , 0 );
76
76
mp_obj_list_append (mp_sys_path , MP_OBJ_NEW_QSTR (MP_QSTR_ ));
77
- mp_obj_list_append (mp_sys_path , MP_OBJ_NEW_QSTR (MP_QSTR__slash_flash_slash_lib ));
77
+ mp_obj_list_append (mp_sys_path , MP_OBJ_NEW_QSTR (MP_QSTR__slash_lib ));
78
78
mp_obj_list_init (mp_sys_argv , 0 );
79
79
readline_init0 ();
80
80
Original file line number Diff line number Diff line change 4
4
5
5
try :
6
6
if bdev :
7
- vfs = uos .VfsFat (bdev )
8
- uos .mount (vfs , '/flash' )
9
- uos .chdir ('/flash' )
7
+ uos .mount (bdev , '/' )
10
8
except OSError :
11
9
import inisetup
12
10
vfs = inisetup .setup ()
Original file line number Diff line number Diff line change 27
27
// qstrs specific to this port, only needed if they aren't auto-generated
28
28
29
29
// Entries for sys.path
30
- Q (/flash / lib )
30
+ Q (/lib )
You can’t perform that action at this time.
0 commit comments