Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
关于SPI flash的elm文件系统
发布于 2013-07-26 17:50:28 浏览:9206
订阅该版
最近在调试spi flash的elm文件系统,发现一些问题; 1、rtthread系统用的是1.2.0beta版本;spiflash型号如打印信息, ``` | / - RT - Thread Operating System / | 1.2.0 build Jul 26 2013 2006 - 2013 Copyright by rt-thread team lwIP-1.4.1 initialized! AT45DB041D detection rtc is not configured please configure with set_date and set_time RTC Reconfig RCC BDCR = 0x8103 RTC TAFCR = 0x0 BKP SRAM write OK Fri Mar 18 08:00:00 2011 finsh />File System initialzation failed!``` 此时提示elm文件系统加载失败,输入格式化命令mkfs("elm","flash0")可以格式化成功 ```finsh />mkfs("elm","flash0") 0, 0x00000000``` 按realtouch的说明,此时reset系统后应该可以mount成功,但是还是提示mount失败,可重新格式化,但是无法加载,这是问题1 ``` | / - RT - Thread Operating System / | 1.2.0 build Jul 26 2013 2006 - 2013 Copyright by rt-thread team lwIP-1.4.1 initialized! AT45DB041D detection Fri Mar 18 08:00:15 2011 finsh />File System initialzation failed! ``` 2、rt-thread文件从github下载最新代码,替换后 ``` | / - RT - Thread Operating System / | 1.2.0 build Jul 26 2013 2006 - 2013 Copyright by rt-thread team lwIP-1.4.1 initialized! AT45DB041D detection rtc is not configured please configure with set_date and set_time RTC Reconfig RCC BDCR = 0x8103 RTC TAFCR = 0x0 BKP SRAM write OK Fri Mar 18 08:00:00 2011 finsh />File System initialzation failed!``` 此时输入格式化命令,无法格式化;提示错误,这是问题2 ```format error -5, 0xfffffffb``` 3、spi驱动程序spi_flash_at45dbxx是aozima写的,应该没有问题,于是下载了RealTouch_20121210_release工程包进行验证; ``` | / - RT - Thread Operating System / | 1.1.0 build Jul 26 2013 2006 - 2012 Copyright by rt-thread team TCP/IP initialized! AT45DB041D detection finsh />File System initialzation failed!``` 输入格式化命令提示格式化OK ```finsh />mkfs("elm","flash0") 0, 0x00000000``` reset后提示加载正常,文件测试什么的都OK; ``` | / - RT - Thread Operating System / | 1.1.0 build Jul 26 2013 2006 - 2012 Copyright by rt-thread team TCP/IP initialized! AT45DB041D detection finsh />flash0 mount to / ``` 此时发现另外一个问题,ST407 reset软复位和硬件复位都提示加载正常,但是掉电重新上电后却提示加载失败,需要重新格式化才能加载成功,请问有遇到类似的问题吗? 下个星期准备仔细看一下这些问题,有消息了再来汇报。
查看更多
10
个回答
默认排序
按发布时间排序
chenytscut
2013-07-29
这家伙很懒,什么也没写!
挂载不成功,但使用device_test("flash0")测试驱动,信息如下,貌似驱动是OK的; 另外device_test("flash0")必须是在没有mount的情况下才能测试; ``` | / - RT - Thread Operating System / | 1.2.0 build Jul 29 2013 2006 - 2013 Copyright by rt-thread team lwIP-1.4.1 initialized! AT45DB041D detection Fri Mar 18 08:39:13 2011 finsh>>File System initialzation failed! device_test("flash0") block device! device info: sector size : 256 byte sector count : 2048 block size : 2048 byte device R/W test pass! RT_TICK_PER_SECOND:100 continuous single sector speed test: write: <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< write 200 sector from 499 to 718, 22.83Kbyte/s read : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> read 200 sector from 719 to 726, 714.28Kbyte/s random single sector speed test: write: <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< write 200 sector from 727 to 942, 23.25Kbyte/s read : >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> read 200 sector from 942 to 949, 714.28Kbyte/s multiple sector speed test write: <<<<<<<<<< multiple write 2 sector speed : 20.83Kbyte/s read : >>>>>>>>>> multiple read 2 sector speed : 500.0Kbyte/s write: <<<<<<<<<< multiple write 4 sector speed : 21.27Kbyte/s read : >>>>>>>>>> multiple read 4 sector speed : 500.0Kbyte/s write: <<<<<<<<<< multiple write 8 sector speed : 20.83Kbyte/s read : >>>>>>>>>> multiple read 8 sector speed : 666.66Kbyte/s write: <<<<<<<<<< multiple write 16 sector speed : 21.5Kbyte/s read : >>>>>>>>>> multiple read 16 sector speed : 666.66Kbyte/s write: <<<<<<<<<< multiple write 32 sector speed : 20.77Kbyte/s read : >>>>>>>>>> multiple read 32 sector speed : 666.66Kbyte/s write: <<<<<<<<<< multiple write 64 sector speed : 20.96Kbyte/s read : >>>>>>>>>> multiple read 64 sector speed : 695.65Kbyte/s write: <<<<<<<<<< multiple write 128 sector speed : 20.94Kbyte/s read : >>>>>>>>>> multiple read 128 sector speed : 711.11Kbyte/s 0, 0x00000000 finsh>> ``` 验证驱动OK,排除了驱动问题; 对系统做mkfs,显示可以格式化,但是reset后还是显示无法挂载,如下所示 ``` finsh>>mkfs("elm","flash0") 0, 0x00000000 finsh>>reset()? | / - RT - Thread Operating System / | 1.2.0 build Jul 29 2013 2006 - 2013 Copyright by rt-thread team lwIP-1.4.1 initialized! AT45DB041D detection Fri Mar 18 09:38:21 2011 finsh>>File System initialzation failed! ```
bernard
2013-07-29
这家伙很懒,什么也没写!
github的版本有些问题,上午刚修复了,你可以重新测试下。
chenytscut
2013-07-29
这家伙很懒,什么也没写!
>github的版本有些问题,上午刚修复了,你可以重新测试下。 --- 已在github下载最新rtthread程序测试: 问题依旧,可以MKFS,reset后无法mount; 单步调试发现,在Ff.c line1989中该条件成立 ``` if (LD_WORD(&fs->win[BS_55AA]) != 0xAA55) /* Check record signature (always placed at offset 510 even if the sector size is >512) */ return 2; ``` 于是在Ff.c line2080 返回FR_NO_FILESYSTEM ``` if (fmt) return FR_NO_FILESYSTEM; /* No FAT volume is found */ ``` 跳转至以下条件成立,mount不成功, ``` /* call mount of this filesystem */ else if (ops->mount(fs, rwflag, data) < 0) { /* close device */ if (dev_id != RT_NULL) rt_device_close(fs->dev_id); /* mount failed */ dfs_lock(); /* clear filesystem table entry */ rt_memset(fs, 0, sizeof(struct dfs_filesystem)); dfs_unlock(); rt_free(fullpath); return -1; } ```
chenytscut
2013-09-08
这家伙很懒,什么也没写!
已测AT45DB161是ok的,AT45DB041不行,问题待查。
apingrtt
2015-03-31
这家伙很懒,什么也没写!
我今天在做SPI Flash时,楼主遇到的问题一样,return 2的条件成立,导致挂载不成功。我用的Flash 是SST25VF016B,不知楼主的问题解决否?
apingrtt
2015-03-31
这家伙很懒,什么也没写!
在我刚刚把SST25VF016B芯片更换成25Q64FV后,更改了IC厂商代码后 ``` / * JEDEC Manufacturer??s ID */ #define MF_ID (0xEF) ``` 并注销了下面代码后,编译下载后第一挂载失败,mkfs("elm","flash0")后,挂载成功 ``` /*else if(memory_type_capacity == MTC_SST25VF016B) { FLASH_TRACE("SST25VF016B detection "); spi_flash_device.geometry.sector_count = 512; }*/ else { FLASH_TRACE("Memory Capacity error! "); return -RT_ENOSYS; } } ``` 终端输出: ``` | / - RT - Thread Operating System / | 1.2.2 build Mar 31 2015 2006 - 2013 Copyright by rt-thread team W25Q64BV or W25Q64CV detection finsh />flash0 mount to /. ```
armink
2016-10-16
这家伙很懒,什么也没写!
>我今天在做SPI Flash时,楼主遇到的问题一样,return 2的条件成立,导致挂载不成功。我用的Flash 是SST25VF016B,不知楼主的问题解决否? --- 很明显,楼主那个是 SPI Flash 驱动的问题,写入和读取的不一致,所以文件系统检查写入的关键词 55AA 没有通过。 你这个估计也是一样的问题。SST 的 SPI Flash 使用是 AAI 写模式,要注意地址与写入大小 2 字节对齐的问题。可以试试我新提交的采用 SFUD 库 SPI Flash 驱动,这方面都做了严格的测试。 最后还要注意硬件问题,前些日子我也遇到过,写入偶尔会不正常,修改硬件后才稳定。所以出现这个问题,优先进行 Flash 读写正确性测试。新增的 SFUD 库,可以通过 SF 命令来测试。
weiyuliang
2017-12-17
这家伙很懒,什么也没写!
SFUD 库 赞一个
Learn
2020-09-16
这家伙很懒,什么也没写!
请问楼主RealTouch_20121210_release这个工程包在哪下载的?
撰写答案
登录
注册新账号
关注者
0
被浏览
9.2k
关于作者
chenytscut
这家伙很懒,什么也没写!
提问
2
回答
7
被采纳
0
关注TA
发私信
相关问题
1
有关动态模块加载的一篇论文
2
最近的调程序总结
3
晕掉了,这么久都不见layer2的踪影啊
4
继续K9ii的历程
5
[GUI相关] FreeType 2
6
[GUI相关]嵌入式系统中文输入法的设计
7
20081101 RT-Thread开发者聚会总结
8
嵌入式系统基础
9
linux2.4.19在at91rm9200 上的寄存器设置
10
[转]基于嵌入式Linux的通用触摸屏校准程序
推荐文章
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
【NXP-MCXA153】 定时器驱动移植
2
GD32F450 看门狗驱动适配
3
【NXP-MCXA153】看门狗驱动移植
4
RT-Thread Studio V2.2.9 Release Note
5
CherryUSB的bootuf2配置
热门标签
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
UART
WIZnet_W5500
ota在线升级
PWM
freemodbus
flash
cubemx
packages_软件包
BSP
潘多拉开发板_Pandora
定时器
ADC
GD32
flashDB
socket
中断
编译报错
Debug
rt_mq_消息队列_msg_queue
SFUD
keil_MDK
msh
ulog
C++_cpp
MicroPython
本月问答贡献
踩姑娘的小蘑菇
7
个答案
2
次被采纳
a1012112796
18
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
红枫
4
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
9
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部