stm32/main: Fix auto creation of pyb.Flash on boot with kw-only args.
This commit is contained in:
parent
11c22430d4
commit
ba5e4841ec
|
@ -222,8 +222,8 @@ MP_NOINLINE STATIC bool init_flash_fs(uint reset_mode) {
|
||||||
|
|
||||||
if (len != -1) {
|
if (len != -1) {
|
||||||
// Detected a littlefs filesystem so create correct block device for it
|
// Detected a littlefs filesystem so create correct block device for it
|
||||||
mp_obj_t args[] = { MP_OBJ_NEW_SMALL_INT(0), MP_OBJ_NEW_SMALL_INT(len) };
|
mp_obj_t args[] = { MP_OBJ_NEW_QSTR(MP_QSTR_len), MP_OBJ_NEW_SMALL_INT(len) };
|
||||||
bdev = pyb_flash_type.make_new(&pyb_flash_type, 2, 0, args);
|
bdev = pyb_flash_type.make_new(&pyb_flash_type, 0, 1, args);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue