8000
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 635064c commit a461567Copy full SHA for a461567
ports/nrf/modules/uos/microbitfs.c
@@ -554,15 +554,6 @@ STATIC mp_obj_t uos_mbfs_file_close(mp_obj_t self) {
554
}
555
STATIC MP_DEFINE_CONST_FUN_OBJ_1(uos_mbfs_file_close_obj, uos_mbfs_file_close);
556
557
-STATIC mp_obj_t uos_mbfs_mount(mp_obj_t self_in, mp_obj_t readonly, mp_obj_t mkfs) {
558
- // This function is called only once (indirectly from main()) and is
559
- // not exposed to Python code. So we can ignore the readonly flag and
560
- // not care about mounting a second time.
561
- microbit_filesystem_init();
562
- return mp_const_none;
563
-}
564
-STATIC MP_DEFINE_CONST_FUN_OBJ_3(uos_mbfs_mount_obj, uos_mbfs_mount);
565
-
566
STATIC mp_obj_t uos_mbfs_remove(mp_obj_t name) {
567
return microbit_remove(name);
568
0 commit comments