STM32挂载SD卡基于Fatfs文件系统读取文件信息
-
🔖本例程基于正点原子标准库修改而来。
-
📍FatFs 相关API函数网站:
http://elm-chan.org/fsw/ff/00index_e.html
-
🌴分别测试了SD卡模块以及Mini SD卡模块。
-
🌿STM32f1单片机和TF卡、SD卡连接采用SPI通讯方式。
-
SD模块:
-
Mini SD卡模块:
-
👉🏻如果需要采用SDIO驱动方式,那么需要采用下面这种引出D0 和D1引脚的模块。
-
🍁2GBSD卡内容读取:
-
120MB的读取TF卡读取:
🛠接线说明
TF卡/SD卡 ----STM32F1
CS ------ PA3
SCK ------ PA5
MOSI ------ PA7
MISO ------ PA6
📑fatfs文件系统读取目录文件说明
- 🌿如果仅仅是读取根目录下的文件,只需包含fatfs文件系统下的
fattester.h
头文件,调用mf_scan_files(u8 * path)
函数。 - 🌿遍历所有目录文件,调用
scan_files(char* path)
📝主程序代码
#include "led.h"
#include "delay.h"
#include "sys.h"
#include "usart.h"
//#include "lcd.h"
#include "key.h"
#include "usmart.h"
#include "malloc.h"
#include "MMC_SD.h"
#include "ff.h"
#include "exfuns.h"
#include "fattester.h"
#include "String.h"
FRESULT scan_files(char* path)
{
FRESULT res; //定义结果对象
DIR dir; //定义目录对象
UINT i; //定义变量
static FILINFO fno; //定义静态文件信息结构对象
res = f_opendir(&dir, (const TCHAR*)path); //打开目录,返回状态 和 目录对象的指针
if(res == FR_OK) //打开成功
{
for(;;) //遍历
{
res = f_readdir(&dir, &fno); //读取目录,返回状态 和 文件信息的指针
if(res != FR_OK || fno.fname[0] == 0)
break; //若打开失败 或 到结尾,则退出
if(fno.fattrib & AM_DIR) //判断是文件夹
{
i = strlen(path); //获取原目录长度
sprintf(&path[i], "/%s", fno.fname); //将新目录添加在原目录后面
printf("目录::%s \r\n", path);
res = scan_files(path); //将新目录进行递归调用
if(res != FR_OK) break; //打开失败则退出
path[i] = 0;
}
else
{
printf(":%s/%s \r\n", path, fno.fname); //是文件
}
}
}
else
{
printf("失败 - %s", &res); //打开失败
}
f_closedir(&dir); //关闭目录
return res; //返回状态
}
int main(void)
{
u32 total, free;
u8 Path1[] = "0:";
NVIC_PriorityGroupConfig(NVIC_PriorityGroup_2);// 设置中断优先级分组2
delay_init(); //延时函数初始化
uart_init(9600); //串口初始化为9600
exfuns_init(); //为fatfs相关变量申请内存
// LCD_Init(); //初始化液晶
LED_Init(); //LED初始化
usmart_dev.init(72);
mem_init(); //初始化内存池
while(SD_Initialize()) //检测SD卡
{
delay_ms(200);
LED0 = !LED0; //PA8闪烁
printf("SD NO Fount! \r\n");
}
exfuns_init(); //为fatfs相关变量申请内存
f_mount(fs[0], " ", 0); //挂载SD、TF卡,第一个形参必须是fs[0],第三个形参可以是0或1
// f_mount(fs[1], "1:", 1); //挂载FLASH.
while(exf_getfree((u8*)"0", &total, &free)) //得到SD卡的总容量和剩余容量
{
delay_ms(100);
LED1 = !LED1; //PD2闪烁
printf("SD Fatfs Error! \r\n");
}
printf("FATFS OK!\r\n");
printf("SD Total Size:%d MB SD Free Size:%d\r\n", total >> 10, free >> 10);
scan_files((char*)Path1);//遍历所有目录中的文件
mf_scan_files(Path1);//遍历根目录下的所有文件
while(1)
{
delay_ms(500);
LED1 = !LED1;
// printf("SD Total Size:%d MB SD Free Size:%d\r\n", total >> 10, free >> 10);
}
}
📚程序源码
链接:https://pan.baidu.com/s/1WWyv9S1G5ZWqmhNNMX_ayA
提取码:a5ro