We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad33e6 commit 79024f3Copy full SHA for 79024f3
atmel-samd/main.c
@@ -74,7 +74,7 @@ void init_flash_fs(void) {
74
// try to mount the flash
75
FRESULT res = f_mount(&vfs->fatfs, vfs->str, 1);
76
77
- if (res == FR_NO_FILESYSTEM) {
+ if (true || res == FR_NO_FILESYSTEM) {
78
// no filesystem, or asked to reset it, so create a fresh one
79
80
// We are before USB initializes so temporarily undo the USB_WRITEABLE
@@ -89,7 +89,7 @@ void init_flash_fs(void) {
89
}
90
91
// set label
92
- f_setlabel("MICROPYTHON");
+ f_setlabel("CIRCUITPY");
93
94
if (usb_writeable) {
95
vfs->flags |= FSUSER_USB_WRITEABLE;
0 commit comments