fatfs使用sdio+dma写入文件时出错了!!

2019-07-21 01:20发布

 fatfs使用sdio+dma写入文件时出错了~!
如果每次写入不大于512byte是不会出错的,当大于512是就出错了!
但是这个出错是写了若干次后才发生的。
不知道哪位大神有遇到过这样问题,求解决啊!!
友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
9条回答
正点原子
1楼-- · 2019-07-22 04:15
//fname:文件名
//strx:要写入的字符串
//repeat:写入的次数(文件大小=strx长度*repeat次数)
void testwrite(u8 *fname,u8* strx,u32 repeat)
{
FIL* f_test;
u8 *databuf; //数组
u8 strxlen=strlen((const char*)strx); //字符串长度
u32 bufrpt=2048/strxlen;   //databuf每次能存储strx的条数
u32 rpcnt=0;
u8 *ptr;
u8 res,i;  
f_test=(FIL*)mymalloc(SRAMIN,sizeof(FIL));
databuf=mymalloc(SRAMIN,2048);
if(f_test==NULL||databuf==NULL)
{
myfree(SRAMIN,f_test);
myfree(SRAMIN,databuf);
return ;
}    
res=f_open(f_test,(const TCHAR*)fname,FA_CREATE_NEW|FA_WRITE);//创建文件
  if(res==FR_OK)//创建成功
{
ptr=databuf;
for(rpcnt=0;rpcnt<repeat;)
{
for(i=0;i<bufrpt;)//将databuf尽量填满
{
strncpy((char*)ptr,(char*)strx,strxlen);
ptr+=strxlen;
rpcnt++;i++; 
if(rpcnt>=repeat)break;   
}  
printf(" reptx:%02d  strxlen:%d",rpcnt,strxlen); //打印当前已写数目
res=f_write(f_test,databuf,(u32)i*strxlen,&bw); //一次写入i*strxlen个字节
if(res||bw!=(bufrpt*strxlen))break; //写入出错/结束
ptr=databuf;
}   
f_close(f_test);
printf(" file size:%d ",rpcnt*strxlen);//总文件大小
}  
myfree(SRAMIN,f_test);
myfree(SRAMIN,databuf);
}  
这是我们sdio的一个测试代码,最大一次写入2048个字节。
Sean_mcu
2楼-- · 2019-07-22 04:38
回复【8楼】正点原子:
---------------------------------
感谢原子哥的大力相助,我调出来了!
九天揽月
3楼-- · 2019-07-22 10:00
 精彩回答 2  元偷偷看……

一周热门 更多>