Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
STM32
文件系统
20
RT-Thread的文件系统 创建文件夹,进入文件夹可以 ,不能创建文件本身,请大神们详细看下帮忙解决
发布于 2025-04-01 11:22:27 浏览:82
订阅该版
配置如下图  挂载代码 ```c #define DBG_TAG "fatfs" #define DBG_LVL DBG_LOG #include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
const char configfile[] = "/config.json"; const char text[] = "hello world!"; static const struct romfs_dirent _romfs_root[] = { {ROMFS_DIRENT_DIR, "stm32flash", RT_NULL, 0}, {ROMFS_DIRENT_DIR, "norflash", RT_NULL, 0}, {ROMFS_DIRENT_FILE, "run.log", text, sizeof(text)} }; const struct romfs_dirent romfs_root = { ROMFS_DIRENT_DIR, "/", (rt_uint8_t *)_romfs_root, sizeof(_romfs_root) / sizeof(_romfs_root[0]) }; void fatfs_init(void) { int result; result = dfs_mount(RT_NULL,"/", "rom",0,&(romfs_root));//创建根目录只读文件系统。 if (result == 0) { LOG_I("ROM file system initializated!\n"); } else { LOG_E("ROM file system initializate failed!\n"); } //将整个NOR Flash 块设备作为文件系统挂载到目录 "/norflash" /*若要把文件系统挂载到fal的分区,则须先把分区号变成块设备, 使用函数fal_mtd_nor_device_create()或fal_blk_device_create()将分区转换为块设备. #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "dowload", "norflash0", 0x00C00000, 0x00400000, 0}, \ } struct rt_device *flash_dev = fal_blk_device_create("dowload"); dfs_mount("dowload", "/norflash0", "elm", 0, 0)*/ // struct rt_device *flash_dev = fal_blk_device_create("record"); // dfs_mkfs("elm", "record"); // if(dfs_mount("record", "/norflash", "elm", 0, 0) == 0 ){ // LOG_I("record mount to FATFS success!\n"); // } if(dfs_mount(NOR_FLASH_DEV_NAME, "/norflash", "elm", 0, 0) == 0 ){ LOG_I("NOR_flash mount to FATFS nofirst success!\n"); } else { result = dfs_mkfs("elm", NOR_FLASH_DEV_NAME);//第一次挂载需格式化,创建 FATFS 文件系统。 if (result == 0) { LOG_I("File system created successfully on nor_flash.\n"); } else { LOG_E("Failed to create file system on nor_flash.\n"); } if(dfs_mount(NOR_FLASH_DEV_NAME, "/norflash", "elm", 0, 0) == 0){//格式化后再次挂载 "/" LOG_I("NOR_flash mount to FATFS first success!\n"); } else { LOG_E("NOR_flash mount to FATFS first failed!\n"); } } } ``` fal_cfg.h文件如下 ```c #ifndef _FAL_CFG_H_ #define _FAL_CFG_H_ #include
#include
#define RT_APP_PART_ADDR 0x8008000 #define NOR_FLASH_DEV_NAME "norflash0" /* ===================== Flash device Configuration ========================= */ extern const struct fal_flash_dev stm32f1_onchip_flash; extern struct fal_flash_dev nor_flash0; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &stm32f1_onchip_flash, \ &nor_flash0, \ } /* ====================== Partition Configuration ========================== */ #ifdef FAL_PART_HAS_TABLE_CFG /* partition table */ #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "bl", "stm32_onchip", 0, 64*1024, 0}, \ {FAL_PART_MAGIC_WORD, "app", "stm32_onchip", 32*1024, 476*1024, 0}, \ {FAL_PART_MAGIC_WORD, "para", "stm32_onchip", 508*1024, 4*1024, 0}, \ {FAL_PART_MAGIC_WORD, "download", NOR_FLASH_DEV_NAME, 1024*1024, 1024*1024, 0}, \ {FAL_PART_MAGIC_WORD, "record", NOR_FLASH_DEV_NAME, 2*1024*1024, 4*1024*1024, 0}, \ } #endif /* FAL_PART_HAS_TABLE_CFG */ #endif /* _FAL_CFG_H_ */ ``` 再看打印信息 ```c \ | / - RT - Thread Operating System / | \ 5.1.0 build Apr 1 2025 11:01:24 2006 - 2024 Copyright by RT-Thread team [1] I/drv.rtc: RTC hasn't been configured, please use
command to config. [12] I/sal.skt: Socket Abstraction Layer initialize success. [20] I/at.clnt: AT client(V1.3.1) on device uart4 initialize success. msh />[66] I/at.dev.esp32: esp32 device wifi is disconnect. [1080] D/app_time: Read: Sec = 0 s, Usec = 49900 us [1086] D/app_rtc: Sat Jan 1 00:00:00 2000 [1091] I/spi_flash: spiflash read W25Q ID is:15ef [1098] I/SFUD: Found a Winbond flash chip. Size is 4194304 bytes. [1106] I/SFUD: norflash0 flash device initialized successfully. [1113] I/SFUD: Probe SPI flash norflash0 by SPI device W25Q64 success. [D/FAL] (fal_flash_init:51) Flash device | stm32_onchip | addr: 0x08000000 | len: 0x00080000 | blk_size: 0x00001000 |initialized finish. [D/FAL] (fal_flash_init:51) Flash device | norflash0 | addr: 0x00000000 | len: 0x00400000 | blk_size: 0x00001000 |initialized finish. [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | bl | stm32_onchip | 0x00000000 | 0x00010000 | [I/FAL] | app | stm32_onchip | 0x00008000 | 0x00077000 | [I/FAL] | para | stm32_onchip | 0x0007f000 | 0x00001000 | [I/FAL] | download | norflash0 | 0x00100000 | 0x00100000 | [I/FAL] | record | norflash0 | 0x00200000 | 0x00400000 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer initialize success. [1226] I/SFUD: ROM file system initializated! [1258] I/SFUD: NOR_flash mount to FATFS nofirst success! [1265] I/para: ParaInfo.ParaVersion is:aa [1271] I/main: ParaInfo.Softversion is:250101 [1277] I/charge_thread: charge_thread is runnning! [1283] I/meter_bl0939: BL0939_Thread is runnning! [1294] I/main_thread: main_thread is runnning! [1300] I/card_thread: card_Thread is runnning! [1306] I/proto_thread: proto_thread is runnning! [1406] I/cnet_thread: cnet_thread is runnning! [6053] W/at.clnt: execute command (ATE0) timeout (5000 ticks)! [6802] I/at.dev.esp32: esp32 device wifi is connected. [7063] I/at.dev.esp32: esp32 device initialize retry... [7117] I/at.dev.esp32: esp32 device wifi is disconnect. [8125] W/at.clnt: execute command (AT+CIFSR) timeout (300 ticks)! [8333] I/at.dev.esp32: esp32 device wifi is connected. [13155] W/at.clnt: execute command (ATE0) timeout (5000 ticks)! [14167] I/at.dev.esp32: esp32 device initialize retry... [14223] I/at.dev.esp32: esp32 device wifi is disconnect. [23546] I/at.dev.esp32: esp32 device wifi is connected. [34223] W/at.clnt: execute command (AT+CIPDOMAIN="link.rt-thread.org") timeout (20000 ticks)! [34601] E/at.clnt: execute command (AT+CIPSTART=0,"UDP","0.31.15.152",8101) failed! [34675] E/at.clnt: execute command (AT+CIPCLOSE=0) failed! [34737] I/at.dev.esp32: esp32 device wifi is disconnect. [34879] I/at.dev.esp32: esp32 device wifi is connected. [35882] I/at.dev.esp32: esp32 device network initialize successfully. msh />list device device type ref count -------- -------------------- ---------- norflash Block Device 1 W25Q64 SPI Device 0 vcom Character Device 0 usbd USB Slave Device 0 rtc RTC 0 pwm3 PWM Device 0 wdt WDT Device 0 spi3 SPI Bus 0 spi2 SPI Bus 0 i2c1 I2C Bus 0 timer5 Timer Device 0 timer3 Timer Device 0 timer2 Timer Device 1 adc1 ADC Device 0 uart5 Character Device 1 uart4 Character Device 2 uart3 Character Device 1 uart2 Character Device 1 uart1 Character Device 2 pin Pin Device 0 msh /> msh />ls Directory /: stm32flash
norflash
run.log 13 msh />cat run.log hello world! msh /> msh />cd norflash msh /norflash> msh /norflash>mkdir record msh /norflash>ls Directory /norflash: record
msh /norflash>mkfs config.txt [139691] E/DFS: Device (config.txt) was not found mkfs failed, result=-1 msh /norflash> msh /norflash>cd record msh /norflash/record>mkfs config.txt [152609] E/DFS: Device (config.txt) was not found mkfs failed, result=-1 msh /norflash/record> ``` msh /norflash/record>mkfs config.txt [152609] E/DFS: Device (config.txt) was not found mkfs failed, result=-1 创建文件夹可以 ,不能创建文件,用fal组件读写操作norflash没问题,请大神们详细看下帮忙解决
查看更多
1
个回答
默认排序
按发布时间排序
踩姑娘的小蘑菇
3天前
这家伙很懒,什么也没写!
创建文件用echo,如 echo "Hello" > config.txt 也可以手写一个创建文件的函数 mkfs是格式化文件系统,相当于pc上的格式化某个磁盘
撰写答案
登录
注册新账号
关注者
0
被浏览
82
关于作者
天天写bug
栈溢出了
提问
5
回答
2
被采纳
1
关注TA
发私信
相关问题
1
【文件系统】目录查询
2
文件系统Posix 接口 的close API疑问
3
dfs_mount挂载文件系统路径的路径必须为‘/’才能成功
4
SD卡连续读写文件报错
5
文件系统挂载断言机制
6
文件系统是否支持挂载NFS网络文件系统
7
文件系统挂载失败!!!
8
dfs_filesystem_lookup() 返回NULL
9
webnet 是否可以做全动态网页,使用内存池来加快速度
10
“文件系统装在表”报错
推荐文章
1
RT-Thread应用项目汇总
2
玩转RT-Thread系列教程
3
国产MCU移植系列教程汇总,欢迎查看!
4
机器人操作系统 (ROS2) 和 RT-Thread 通信
5
五分钟玩转RT-Thread新社区
6
【技术三千问】之《玩转ART-Pi》,看这篇就够了!干货汇总
7
关于STM32H7开发板上使用SDIO接口驱动SD卡挂载文件系统的问题总结
8
STM32的“GPU”——DMA2D实例详解
9
RT-Thread隐藏的宝藏之completion
10
【ART-PI】RT-Thread 开启RTC 与 Alarm组件
最新文章
1
RTT串口查找函数使用过程中遇到的问题。
2
RT-Thread CI编译产物artifacts自动上传功能介绍
3
STM32G030移植RT-Thread
4
CubeMX & RT-Thread Studio 联合开发说明
5
RT-Thread项目助手v0.3 | Ubuntu与MacOS平台的RT-Thread Env
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
rt-smart
RTC
FAL
I2C_IIC
cubemx
ESP8266
UART
WIZnet_W5500
ota在线升级
PWM
BSP
flash
freemodbus
packages_软件包
潘多拉开发板_Pandora
GD32
定时器
ADC
flashDB
编译报错
socket
中断
rt_mq_消息队列_msg_queue
keil_MDK
Debug
SFUD
ulog
msh
C++_cpp
MicroPython
本月问答贡献
出出啊
1522
个答案
343
次被采纳
小小李sunny
1444
个答案
290
次被采纳
张世争
815
个答案
179
次被采纳
crystal266
555
个答案
162
次被采纳
whj467467222
1222
个答案
149
次被采纳
本月文章贡献
出出啊
1
篇文章
2
次点赞
小小李sunny
1
篇文章
1
次点赞
张世争
1
篇文章
3
次点赞
crystal266
2
篇文章
1
次点赞
whj467467222
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部