file based emmc emummc, some other stuff

This commit is contained in:
Christoph Baumann
2025-05-12 01:24:01 +02:00
parent 79b6df64d6
commit 76508c74e8
14 changed files with 143 additions and 113 deletions

View File

@@ -224,8 +224,12 @@ static int _stat_and_copy_files(const char *src, const char *dst, char *path, u3
// Open directory.
res = f_opendir(&dir, path);
if (res != FR_OK)
if (res != FR_OK){
if(res == FR_NO_PATH){
return FR_OK;
}
return res;
}
if (labels)
lv_label_set_text(labels[0], path);