Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
片上flash
扇区大小大约FAT 大小
发布于 2021-08-17 11:37:12 浏览:1110
订阅该版
在STM32F4 片上创建分区失败,宏定义已经调为4096 ```c const struct fal_flash_dev stm32f2_onchip_flash = { .name = "stm32_onchip", // name[] .addr = 0x08000000, // addr .len = 1024*1024, // len .blk_size = 128*1024, // blk_size stm32 FLASH .ops = {NULL, fal_flash_read, fal_flash_write, fal_flash_erase}, .write_gran = 8 }; /* flash device table */ #define FAL_FLASH_DEV_TABLE \ { \ &stm32f2_onchip_flash, \ } /* ====================== Partition Configuration ========================== */ #ifdef FAL_PART_HAS_TABLE_CFG /* partition table */ //uint32_t magic_word name[FAL_DEV_NAME_MAX] flash_name[FAL_DEV_NAME_MAX] offset len reserved #define FAL_PART_TABLE \ { \ {FAL_PART_MAGIC_WORD, "app", "stm32_onchip", 0, 896*1024, 0}, \ {FAL_PART_MAGIC_WORD, "fs", "stm32_onchip", 896*1024, 128*1024, 0}, \ } #endif /* FAL_PART_HAS_TABLE_CFG */ ``` ```c /* elm-chan's FatFs, Generic FAT Filesystem Module */ #define RT_DFS_ELM_CODE_PAGE 437 #define RT_DFS_ELM_WORD_ACCESS #define RT_DFS_ELM_USE_LFN_3 #define RT_DFS_ELM_USE_LFN 3 #define RT_DFS_ELM_MAX_LFN 255 #define RT_DFS_ELM_DRIVES 2 ****#define RT_DFS_ELM_MAX_SECTOR_SIZE 4096**** #define RT_DFS_ELM_REENTRANT /* end of elm-chan's FatFs, Generic FAT Filesystem Module */ #define RT_USING_DFS_DEVFS ``` ```c static void fal_elmfat_sample(void) { int fd, size; struct statfs elm_stat; struct fal_blk_device *blk_dev; char str[] = "elmfat mount to W25Q flash.", buf[80]; /* fal init */ fal_init(); // elmfat文件系统只能挂载到块设备上 /* create block device */ blk_dev = (struct fal_blk_device *)fal_blk_device_create(FS_PARTITION_NAME);// FAL块设备的创建与注册过程 if(blk_dev == RT_NULL) rt_kprintf("Can't create a block device on '%s' partition.\n", FS_PARTITION_NAME); else rt_kprintf("Create a block device on the %s partition of flash successful.\n", FS_PARTITION_NAME); /* make a elmfat format filesystem */ if(dfs_mkfs("elm", FS_PARTITION_NAME) == 0) rt_kprintf("make elmfat filesystem success.\n"); /* mount elmfat file system to FS_PARTITION_NAME */ if(dfs_mount(FS_PARTITION_NAME, "/", "elm", 0, 0) == 0) rt_kprintf("elmfat filesystem mount success.\n"); } ``` 串口打印: ``` wIP-2.0.2 initialized! [108] I/sal.skt: main: Socket Abstraction Layer initialize success. [116] E/DFS: main: mount fs[elm] on / failed. [D/FAL] (fal_flash_init:63) Flash device | stm32_onchip | addr: 0x08000000 | len: 0x00100000 | blk_size: 0x00020000 |initialized finish. [D/FAL] (fal_partition_init:284) fal_partition_init OK [I/FAL] ==================== FAL partition table ==================== [I/FAL] | name | flash_dev | offset | length | [I/FAL] ------------------------------------------------------------- [I/FAL] | app | stm32_onchip | 0x00000000 | 0x000b0000 | [I/FAL] | fs | stm32_onchip | 0x000b0000 | 0x00010000 | [I/FAL] ============================================================= [I/FAL] RT-Thread Flash Abstraction Layer (V0.5.0) initialize success. [I/FAL] The FAL block device (fs) created successfully Create a block device on the fs partition of flash successful. **The sector size of device is greater than the sector size of FAT.** ```
查看更多
2
个回答
默认排序
按发布时间排序
出出啊
2021-08-17
恃人不如自恃,人之为己者不如己之自为也
目测,你先执行 dfs_mount ,后执行 fal_flash_init 了,初始化在后,肯定挂载失败的 可以的话,把你调用 dfs_mount 和 fal_flash_init 的地方的代码贴出来,谈谈初始化执行顺序的问题。
aozima
2021-08-17
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
不可行,别多想了 请参考 - https://club.rt-thread.org/ask/question/427427.html - https://club.rt-thread.org/ask/question/431727.html - https://club.rt-thread.org/ask/question/431083.html 另外,贴代码请加标签,发完不觉得乱吗?
撰写答案
登录
注册新账号
关注者
0
被浏览
1.1k
关于作者
Kongyq
这家伙很懒,什么也没写!
提问
6
回答
1
被采纳
0
关注TA
发私信
相关问题
1
F4片上flash用FAL挂载dfs,遇到问题
2
使用片上flash的 littlefs 无法创建多个目录
3
studio中如何使能片上Flash
4
在片上flash使用flashdb时遇到的问题
5
片上flash移植flashDB时,如果写入操作会删除整片扇区,需不需要把底层的写函数先读后写的处理?
推荐文章
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
使用百度AI助手辅助编写一个rt-thread下的ONVIF设备发现功能的功能代码
2
RT-Thread 发布 EtherKit开源以太网硬件!
3
rt-thread使用cherryusb实现虚拟串口
4
《C++20 图形界面程序:速度与渲染效率的双重优化秘籍》
5
《原子操作:程序世界里的“最小魔法单位”解析》
热门标签
RT-Thread Studio
串口
Env
LWIP
SPI
AT
Bootloader
Hardfault
CAN总线
FinSH
ART-Pi
USB
DMA
文件系统
RT-Thread
SCons
RT-Thread Nano
线程
MQTT
STM32
RTC
FAL
rt-smart
ESP8266
I2C_IIC
WIZnet_W5500
UART
ota在线升级
PWM
cubemx
freemodbus
flash
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
Debug
编译报错
msh
SFUD
keil_MDK
rt_mq_消息队列_msg_queue
ulog
C++_cpp
at_device
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
8
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
5
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部