Remove unused pyb functions.

This commit is contained in:
iabdalkader 2017-09-24 21:29:34 +02:00
parent 6e34bafe6b
commit 608ca9ab87
2 changed files with 2 additions and 23 deletions

@ -1 +1 @@
Subproject commit 2ada5579bc7b26c81c0e98f10d0b1bc3111c4912
Subproject commit 8af66e33201f8e3a4eeecff39dd8ebfecb759884

View File

@ -229,27 +229,6 @@ void __attribute__((weak))
}
#endif
STATIC mp_obj_t pyb_config_source_dir = MP_OBJ_NULL;
STATIC mp_obj_t pyb_config_main = MP_OBJ_NULL;
STATIC mp_obj_t pyb_source_dir(mp_obj_t source_dir) {
if (MP_OBJ_IS_STR(source_dir)) {
pyb_config_source_dir = source_dir;
}
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_1(pyb_source_dir_obj, pyb_source_dir);
STATIC mp_obj_t pyb_main(mp_obj_t main) {
if (MP_OBJ_IS_STR(main)) {
pyb_config_main = main;
}
return mp_const_none;
}
MP_DEFINE_CONST_FUN_OBJ_1(pyb_main_obj, pyb_main);
void make_flash_fs()
{
FIL fp;
@ -333,7 +312,7 @@ FRESULT exec_boot_script(const char *path, bool selftest, bool interruptible)
}
if (selftest && f_res == FR_OK) {
// Success: remove self tests script and flush cache
// Remove self tests script and flush cache
f_unlink(&vfs_fat->fatfs, path);
storage_flush();