RT,我在FATFS中开启了长文件名支持,并且是使用了操作系统的。
#define _USE_LFN 3 /* 0 to 3 */#define _MAX_LFN 255 /* Maximum LFN length to handle (12 to 255) */
[color=rgb(51, 102, 153) !important]复制代码
在FreeRTOS中的Task中调用以下函数:
f_opendir(&dj,"0:VendingMachines/advertisement"); f_readdir(&dj,&fno);
[color=rgb(51, 102, 153) !important]复制代码
发现个问题,fno中的fname中找不到长文件名的文件“ad11111111111.bmp”,短文件名的找到了,名字在fname中。
正常来说启用了长文件名不应该在flname中的吗?
秋解惑 |