Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
flash
SPI
SFUD
rt_sfud_flash_probe调用失败
发布于 2021-02-21 23:24:36 浏览:2959
订阅该版
就是挂载SPI FLASH的时候失败,代码: ```c int rt_hw_spi_flash_init(void) { int ret; __HAL_RCC_GPIOA_CLK_ENABLE(); ret = rt_hw_spi_device_attach("spi1", "spi10", GPIOA, GPIO_PIN_4); if (ret != RT_EOK) { rt_kprintf("rt_hw_spi_device_attach failed! \n"); return ret; } else { rt_kprintf("rt_hw_spi_device_attach succ! \n"); } if (RT_NULL == rt_sfud_flash_probe("W25Q256", "spi10")) { rt_kprintf("rt_sfud_flash_probe failed! \n"); return -RT_ERROR; } return RT_EOK; } INIT_COMPONENT_EXPORT(rt_hw_spi_flash_init); ``` 打印的log: ``` > [22:55:52.505] \ | / - RT - Thread Operating System / \ 3.1.4 build Feb 21 2021 2006 - 2019 Copyright by rt-thread team rt_hw_spi_device_attach succ! [SFUD] (..\..\..\components\drivers\spi\sfud\src\骹ud.c:861) The flash device manufacturer ID is 0x00, memory type ID is 0x00, capacity ID is 0x00. [SFUD] (..\..\..\components\drivers\spi\sfu鋅src\sfud_sfdp.c:122) Error: Check SFDP sig頰ture error. It's must be 50444653h('S' 'F' 'D' 'P'). 跾FUD] Wa騨ing: Read SFDP paramet錼 header in鎜rmation fa閘ed. The W25Q256 is not support 蔈DEC SFDP. [SFUD] Warning: This flash device is not found or not support. [SFUD] Error: W25Q256 flash device is initialize fail. ERROR: SPI flash probfailed by SPI device spi10. rt_sfu鋉flash_probe failed! 韘h >device type ref count ------ -------------------- ---------- spi10 SPI Device 0 spi1 SPI Bus 0 鮝rt3 Character Device 2 pin Miscellaneous Device 0 ```
查看更多
张世争
2021-02-22
学以致用
隐隐约约看到: ``` The flash device manufacturer ID is 0x00, memory type ID is 0x00, capacity ID is 0x00. ``` SPI Flash初始化失败了
4
个回答
默认排序
按发布时间排序
yangjie
认证专家
2021-02-22
hello
硬件用的哪个spi? 是 spi1 吗?
OrangePeeeel
2021-02-23
这家伙很懒,什么也没写!
![image.png](https://oss-club.rt-thread.org/uploads/20210223/67510d060b85a709e6f7f9332feea96a.png) 这里勾选上了吗
Juggernaut
2021-02-23
①②③
问题解决了,是SPI FLASH一个pin的电阻问题,感谢各位关注帮助; ``` > \ | / - RT - Thread Operating System / | \ 3.1.4 build Feb 21 2021 2006 - 2019 Copyright by rt-thread team rt_hw_spi_device_attach succ! [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud.c:861) The flash device manufacturer ID is 0xEF, memory type ID is 0x40, capacity ID is 0x19. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:131) Check SFDP header is OK. The reversion is V1.0, NPN is 0. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:173) Check JEDEC basic flash parameter header is OK. The table id is 0, reversion is V1.0, length is 9, parameter table pointer is *[SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:203) JEDEC basic flash parameter table info: [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:204) MSB-LSB 3 2 1 0 [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0001] 0xFF 0xF3 0x20 0xE5 [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0002] 0x0F 0xFF 0xFF 0xFF [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0003] 0x6B 0x08 0xEB 0x44 [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0004] 0xBB 0x42 0x3B 0x08 [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0005] 0xFF 0xFF 0xFF 0xFE [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0006] 0x00 0x00 0xFF 0xFF [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0007] 0xEB 0x21 0xFF 0xFF [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0008] 0x52 0x0F 0x20 0x0C [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:206) [0009] 0x00 0x00 0xD8 0x10 [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:215) 4 KB Erase is supported throughout the device. Command is 0x20. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:234) Write granularity is 64 bytes or larger. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:245) Target flash status register is non-volatile. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:276) 3- or 4-Byte addressing. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:305) Capacity is 33554432 Bytes. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:311) Flash device supports 4KB block erase. Command is 0x20. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:311) Flash device supports 32KB block erase. Command is 0x52. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud_sfdp.c:311) Flash device supports 64KB block erase. Command is 0xD8. [SFUD] Find a Winbond flash chip. Size is 33554432 bytes. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud.c:840) Flash device reset success. [SFUD] (..\..\..\components\drivers\spi\sfud\src\sfud.c:941) Enter 4-Byte addressing mode success. [SFUD] W25Q256 flash device is initialize success. [SFUD] Probe SPI flash W25Q256 by SPI device spi10 success. ```
撰写答案
登录
注册新账号
关注者
0
被浏览
3k
关于作者
Juggernaut
①②③
提问
15
回答
109
被采纳
6
关注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
使用百度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
at_device
ulog
C++_cpp
本月问答贡献
踩姑娘的小蘑菇
7
个答案
3
次被采纳
a1012112796
13
个答案
2
次被采纳
张世争
9
个答案
2
次被采纳
rv666
5
个答案
2
次被采纳
用户名由3_15位
11
个答案
1
次被采纳
本月文章贡献
程序员阿伟
7
篇文章
2
次点赞
hhart
3
篇文章
4
次点赞
大龄码农
1
篇文章
2
次点赞
ThinkCode
1
篇文章
1
次点赞
Betrayer
1
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部