Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
SPI
SFUD
spi读取flash问题Can't enable write status?
发布于 2022-09-22 13:05:29 浏览:968
订阅该版
RT版本:4.1.0 flash:W25Q16DV 代码: ```c #include "drv_spi.h" #include
#include "spi_flash_sfud.h" #define SPI_NAME "spi1" //spi 接口名 #define CS_GPIO GPIOB //片选GPIO组 stn32 #define CS_PIN GPIO_PIN_14 //片选GPIO脚 stm32 #define SPI_DEV_NAME "spi10" //挂在在spi总线上的设备名 #define FLASE_NAME "W25Q16" //flash设备名 #define FS_NAME "elm" //文件系统 #define ROOT_PATH "/flash1" //文件系统的根目录 int w25q_init(void){ rt_hw_spi_device_attach(SPI_NAME, SPI_DEV_NAME, CS_GPIO, CS_PIN); rt_hw_us_delay(100); if(rt_sfud_flash_probe(FLASE_NAME, SPI_DEV_NAME)){ rt_kprintf("sfud flash probe success\n"); return RT_EOK; } else{ rt_kprintf("sfud flash probe fail\n"); return RT_ERROR; } } INIT_COMPONENT_EXPORT(w25q_init); int dfs_mount_init(void){ dfs_mkfs(FS_NAME, FLASE_NAME); if(dfs_mount(FLASE_NAME, ROOT_PATH, FS_NAME, 0, 0) == 0){ rt_kprintf("dfs_mount success\n"); return RT_EOK; } else{ rt_kprintf("dfs_mount fail\n"); return RT_ERROR; } } INIT_COMPONENT_EXPORT(dfs_mount_init); ``` 输出: ```shell [I/SFUD] Warning: Read SFDP parameter header information failed. The W25Q16 is not support JEDEC SFDP. [I/SFUD] Find a Winbond W25Q16BV flash chip. Size is 2097152 bytes. [I/SFUD] W25Q16 flash device is initialize success. [I/SFUD] Probe SPI flash W25Q16 by SPI device spi10 success. sfud flash probe success [I/SFUD] Error: Can't enable write status. format error, result=1 dfs_mount fail ``` github issues: https://github.com/armink/SFUD/issues/34 我不用代码,使用sf工具操作flash,读是没有问题的,但是写和擦除有问题,问题时好时坏,就像github上说的可能是读写切换的问题。 操作日志: ```shell msh />sf read 0 64 Read the sf_cmd flash data success. Start from 0x00000000, size is 64. The data is: Offset (h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F [00000000] 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 ................ [00000010] 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 ................ [00000020] 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 ................ [00000030] 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 ................ msh />sf ser msh />sf era msh />sf erase 0 8194 [I/SFUD] Error: Can't disable write status. Erase the sf_cmd flash data success. Start from 0x00000000, size is 8194. msh />sf write 1000 1 2 3 4 5 #这里写入成功 Write the sf_cmd flash data success. Start from 0x000003E8, size is 5. Write data: 1 2 3 4 5 . msh />sf erase 0 8194 [I/SFUD] Error: Can't enable write status. This flash operate has an error. Error code: 2. msh />sf erase 0 8194 [I/SFUD] Error: Can't disable write status. Erase the sf_cmd flash data success. Start from 0x00000000, size is 8194. msh />sf read 1000 5 Read the sf_cmd flash data success. Start from 0x000003E8, size is 5. The data is: Offset (h) 00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F [000003E8] 02 02 02 02 02 ..... msh />sf write 0 1 2 3 4 5 [I/SFUD] Error: Can't disable write status. Write the sf_cmd flash data success. Start from 0x00000000, size is 5. Write data: 1 2 3 4 5 . msh />sf write 0 1 2 3 4 5 [I/SFUD] Error: Can't disable write status. Write the sf_cmd flash data success. Start from 0x00000000, size is 5. Write data: 1 2 3 4 5 . msh />sf write 500 1 2 3 4 5 [I/SFUD] Error: Can't disable write status. Write the sf_cmd flash data success. Start from 0x000001F4, size is 5. Write data: 1 2 3 4 5 . msh />sf erase 0 8194 [I/SFUD] Error: Can't disable write status. Erase the sf_cmd flash data success. Start from 0x00000000, size is 8194. msh />sf status The sf_cmd flash status register current value is 0xFF. msh />sf status The sf_cmd flash status register current value is 0x02. msh /> msh />sf status The sf_cmd flash status register current value is 0x02. msh />sf status The sf_cmd flash status register current value is 0x02. msh />sf write 500 1 2 3 4 5 Write the sf_cmd flash data success. Start from 0x000001F4, size is 5. Write data: 1 2 3 4 5 . msh />sf status The sf_cmd flash status register current value is 0x02. msh />sf erase 0 8194 [I/SFUD] Error: Can't enable write status. This flash operate has an error. Error code: 2. msh /> ``` 功能:spi驱动flash挂载文件系统
查看更多
1
个回答
默认排序
按发布时间排序
ThinkCode
2022-11-25
这家伙很懒,什么也没写!
stm32f407的问题
撰写答案
登录
注册新账号
关注者
0
被浏览
968
关于作者
ThinkCode
这家伙很懒,什么也没写!
提问
20
回答
16
被采纳
0
关注TA
发私信
相关问题
1
BBB的SPI驱动
2
求个SPI上挂两个或多个设备的使用例子
3
SPI设备有个bug
4
spi flash 的fatfs使用一段时间后读写文件出现故障
5
SPI驱动
6
请教rt_spi_configure函数理解
7
SPI FLASH挂载的问题
8
SPI-FLASH 文件系统 SPIFFS
9
求助一个完整的 spi flash 驱动
10
关于同时使用文件系统与SPI FLASH的问题
推荐文章
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
【RT-Thread】【ci】【scons】将ci.attachconfig.yml和scons结合使用
2
Rt-thread中OTA下载后,bootloader不搬程序
3
ulog 日志 LOG_HEX 输出时间改为本地日期时间
4
在RT-Thread Studio中构建前执行python命令
5
研究一了一段时间RTT,直接标准版上手太难,想用nano,但又舍不得组件
热门标签
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
I2C_IIC
ESP8266
UART
WIZnet_W5500
ota在线升级
cubemx
PWM
flash
freemodbus
BSP
packages_软件包
潘多拉开发板_Pandora
定时器
ADC
flashDB
GD32
socket
编译报错
中断
Debug
rt_mq_消息队列_msg_queue
SFUD
msh
keil_MDK
ulog
C++_cpp
MicroPython
本月问答贡献
xusiwei1236
8
个答案
2
次被采纳
踩姑娘的小蘑菇
1
个答案
2
次被采纳
用户名由3_15位
9
个答案
1
次被采纳
bernard
4
个答案
1
次被采纳
RTT_逍遥
3
个答案
1
次被采纳
本月文章贡献
聚散无由
2
篇文章
15
次点赞
catcatbing
2
篇文章
5
次点赞
Wade
2
篇文章
4
次点赞
Ghost_Girls
1
篇文章
7
次点赞
xiaorui
1
篇文章
2
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部