1 parent 1937953 commit 2f02302Copy full SHA for 2f02302
1 file changed
esp8266/main.c
@@ -73,12 +73,15 @@ void user_init(void) {
73
system_init_done_cb(init_done);
74
}
75
76
+mp_lexer_t *fat_vfs_lexer_new_from_file(const char *filename);
77
+mp_import_stat_t fat_vfs_import_stat(const char *path);
78
+
79
mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
- return NULL;
80
+ return fat_vfs_lexer_new_from_file(filename);
81
82
83
mp_import_stat_t mp_import_stat(const char *path) {
- return MP_IMPORT_STAT_NO_EXIST;
84
+ return fat_vfs_import_stat(path);
85
86
87
mp_obj_t mp_builtin_open(uint n_args, const mp_obj_t *args, mp_map_t *kwargs) {
0 commit comments