diff --git a/bootloader/config.c b/bootloader/config.c index e9021e1..8fbca05 100644 --- a/bootloader/config.c +++ b/bootloader/config.c @@ -44,9 +44,6 @@ void set_default_configuration() int create_config_entry() { - if (!sd_mount()) - return 1; - char lbuf[64]; FIL fp; bool mainIniFound = false; @@ -151,7 +148,6 @@ int create_config_entry() } f_close(&fp); - sd_end(); return 0; }