我正在尝试使用 f_write 函数形式的 FatFs libery 在循环中将大量文件保存在 SD 卡中,不幸的是,在最多 50 个循环条目后 f_write 返回 FR_DISK_ERR。
做一个测试花了 30 多分钟,所以我做了 Enity Test,在 SD 卡上保存了 10,000 个文件,程序仍然保存 < 50 个文件。
for(uint16_t i = 0; i < 10000; ++i){
if(f_mount(&mfs,"0:",0) != FR_OK){
to_int.put_str("Mount error");
break;
}
if(f_chdrive("0:" ) != FR_OK){
to_int.put_str("Oper error");
break;
}
sprintf(f_name, "test%d.txt", i);
if(f_open(&fil, f_name, FA_WRITE | FA_CREATE_ALWAYS)!= FR_OK){
to_int.put_str("Write error");
break;
}
if(f_write(&fil, wtext, sizeof(wtext), (void *)&wbytes) != FR_OK){ //<------FR_DISK_ERR
to_int.put_str("Write Error\n");
break;
}
f_sync(&fil);
f_close(&fil);
f_mount(0, "0:", 0);
to_int.put_str(f_name);\
to_int.put_str(" writed!\n");
}