We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbaace7 commit d4117d7Copy full SHA for d4117d7
esp32/main.c
@@ -65,6 +65,8 @@ void mp_task(void *pvParameter) {
65
mp_init();
66
MP_STATE_PORT(mp_kbd_exception) = mp_obj_new_exception(&mp_type_KeyboardInterrupt);
67
mp_obj_list_init(mp_sys_path, 0);
68
+ mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR_));
69
+ mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_flash_slash_lib));
70
mp_obj_list_init(mp_sys_argv, 0);
71
readline_init0();
72
esp32/qstrdefsport.h
@@ -27,5 +27,4 @@
27
// qstrs specific to this port, only needed if they aren't auto-generated
28
29
// Entries for sys.path
30
-Q(/)
31
-Q(/lib)
+Q(/flash/lib)
0 commit comments