使用的是阿波罗的的Nand fatfs文件系统,Nand芯片是 K9F4G的 512M的。
经过修改一点点;
主函数里面:
f_mount(Nand_Disc, &NAND_fatfs);
res = f_open(&NAND_file, "1:/qq.txt", FA_OPEN_EXISTING|FA_READ); //这边返回 FR_NO_FILESYSTEM
if(res == FR_NO_FILESYSTEM)
{
res = f_mkfs(Nand_Disc,1,4096); //返回 OK
if(res == FR_OK)
res = f_open(&NAND_file, "1:/qq.txt", FA_CREATE_ALWAYS | FA_READ); //这边又返回 FR_NO_FILESYSTEM
}
f_close(&NAND_file);
明明格式化成功了,为什么还是返回没有文件系统。我仿真进去看了一下,是因为每次f_mkfs格式化完成以后,去操作文件时,会再次进入RTL_Init()函数里面,
其中 temp=FTL_CreateLUT(1);这个函数,nand_dev.lut[i] 每次f_mkfs之前数据都是00 00 01 00 02 00 03 00 04 00 05 00.....都是正确的,f_mkfs格式化以后,
就会出现FF FF 01 00 02 00 03 00 04 00 05 00....,这样就会导致又重新低级格式化了。
请问为什么会出现这样的情况,希望各路大神给点建议,原子哥的RTL那部分代码我没有具体看。
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
底层没问题的,我开机注册了nanf的文件区,创建一个cfg文件,写入没问题,读取数据也都是正确的,这个cfg文件的大小为1K左右。然后我再创建一个BMP图片,也返回创建成功了,可是我朝里面写数据就返回FR_DISK_ERR。
if (csect == 0) { /* On the cluster boundary? */
if (fp->fptr == 0) { /* On the top of the file? */
clst = fp->obj.sclust; /* Follow from the origin */
if (clst == 0) { /* If no cluster is allocated, */
clst = create_chain(&fp->obj, 0); /* create a new cluster chain *///这一步它会执行,进去。
}
} else { /* On the middle or end of the file */
#if _USE_FASTSEEK
if (fp->cltbl) {
clst = clmt_clust(fp, fp->fptr); /* Get cluster# from the CLMT */
} else
#endif
{
clst = create_chain(&fp->obj, fp->clust); /* Follow or stretch cluster chain on the FAT */
}
}
if (clst == 0) break; /* Could not allocate a new cluster (disk full) */
if (clst == 1) ABORT(fs, FR_INT_ERR);
if (clst == 0xFFFFFFFF) ABORT(fs, FR_DISK_ERR);
fp->clust = clst; /* Update current cluster */
if (fp->obj.sclust == 0) fp->obj.sclust = clst; /* Set start cluster if the first write */
}
一周热门 更多>