Toggle navigation
首页
问答
文章
积分商城
专家
专区
更多专区...
文档中心
返回主站
搜索
提问
会员
中心
登录
注册
RT-Thread一般讨论
大家在STM32F2上用SPI通过文件系统读写SD能达到什么速度?
发布于 2012-08-26 17:12:05 浏览:5806
订阅该版
这个是我在一张4G SDHC上测的,已经用了DMA,SPI的速度是PCLK2/4=15M.测试文件10MB,写的时候每次写256字节,读的时候也是256字节. ``` | / - RT - Thread Operating System / | 1.0.2 build Aug 26 2012 2006 - 2011 Copyright by rt-thread team found part[0], begin: 4194304, size: 3.704GB SPI SD init OK File System initialized! LCD Device ID : 9335 finsh>>file_test() File speed test with 10MB write and read of 256bytes a block Writing ... speed 39 kB/s Reading ... speed 646 kB/s 0, 0x00000000 finsh>> ``` 虽然够用,不过比预想的慢,不知道大家的SD在SPI上能达到什么速度?
查看更多
9
个回答
默认排序
按发布时间排序
presto
2012-08-26
这家伙很懒,什么也没写!
PS STM32官方的SPI SD驱动实在不好用(或者我不会用),连SDHC都不支持.
aozima
2012-08-26
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
全角英文字太难看了。 SD卡写入请注意扇区对齐与写入块大小。
presto
2012-08-26
这家伙很懒,什么也没写!
SPI的速度从15M提高到30M,对写入速度几乎没有影响,读出速度提高20%左右. ``` | / - RT - Thread Operating System / | 1.0.2 build Aug 26 2012 2006 - 2011 Copyright by rt-thread team found part[0], begin: 4194304, size: 3.704GB SPI SD init OK File System initialized! LCD Device ID : 9335 finsh>>file_test() File speed test with 10MB write and read of 256bytes a block Writing ... speed 39 kB/s Reading ... speed 788 kB/s 0, 0x00000000 finsh>> ```
presto
2012-08-26
这家伙很懒,什么也没写!
>全角英文字太难看了。 > >SD卡写入请注意扇区对齐与写入块大小。 --- 故意用256字节测的,因为应用程序的行缓冲一般256字节,而且也想看看半个扇区操作的时候性能怎么样。 PS我也不知道怎么英文就全角了。 PPS我的SDHC卡可是class10,速度都消耗在哪呢?(代码没优化,用的-O0)另外,SDIO的驱动有bug,挑卡,出读写错误,还死机。还是1.0.2版本里的太旧了?
aozima
2012-08-26
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
15Mbps = 1.875Mbyte/s 而实测出来为39Kbyte/s,所以时间都是花在SD卡内部。 这个时间由SD卡决定,越大的卡一般会越慢,最大看到有的卡(SDHC C10的卡)写一个随机扇区需要700ms.
presto
2012-08-26
这家伙很懒,什么也没写!
再上一张32M老卡的测试结果,速度降到15M,好像不怎么比C10的差。 ``` | / - RT - Thread Operating System / | 1.0.2 build Aug 26 2012 2006 - 2011 Copyright by rt-thread team found part[0], begin: 26112, size: 29.678MB SPI SD init OK File System initialized! LCD Device ID : 9335 finsh>>file_test() File speed test with 10MB write and read of 256bytes a block Writing ... speed 40 kB/s Reading ... speed 604 kB/s 0, 0x00000000 finsh>> ```
aozima
2012-08-26
调网络不抓包,调I2C等时序不上逻辑分析仪,就像电工不用万用表!多用整理的好的文字,比截图更省流量,还能在整理过程中思考。
找了张2G的卡,SD卡驱动程序是自己写的,不是用的ST发布的。 测试程序就是RT-Thread发布包里面的。(examples/file/) 卡识别信息:(SPI时钟为10M,非DMA方式,CPU性能应该在F2的一半左右) >| / >- RT - Thread Operating System > / | 1.0.1 build Aug 25 2012 > 2006 - 2011 Copyright by rt-thread team >[MSD] 0 [info] SD card goto IDLE mode OK! >[MSD] 0 [info] CMD8 response : 0x05 0xFF 0xFF 0xFF 0xFF >[MSD] 0 [info] CMD8 is illegal command. >[MSD] 1 [info] maybe Ver1.X SD Memory Card or MMC card! >[MSD] 1 [info] OCR is 0x00FF8000 >[MSD] 1 [info] It is Ver1.X SD Memory Card!!! >[MSD] 1 [info] CSD Version 1.0 >[MSD] 1 [info] TRAN_SPEED: 0x32, 10Mbit/s. >[MSD] 1 [info] CSD : READ_BL_LEN : 10 1024byte >[MSD] 2 [info] CSD : C_SIZE : 3828 >[MSD] 2 [info] CSD : C_SIZE_MULT : 7 >[MSD] 2 [info] card capacity : 1914 Mbyte >File System initialized! --- 写入速度: >finsh />writespeed("/test.bin", 327680, 256) >File write speed: 7680 byte/s > >finsh />writespeed("/test.bin", 327680, 512) >File write speed: 7680 byte/s > >finsh />writespeed("/test.bin", 3276800, 1024) >File write speed: 410880 byte/s > >finsh />writespeed("/test.bin", 327680, 1025) >File write speed: 6680 byte/s > >finsh />writespeed("/test.bin", 3276800, 1536) >File write speed: 459880 byte/s > >finsh />writespeed("/test.bin", 327680, 2048) >File write speed: 436880 byte/s > >finsh />writespeed("/test.bin", 327680, 4096) >File write speed: 485440 byte/s --- 读取速度: >finsh />readspeed("/test.bin", 255) >File read speed: 492640 byte/s > >finsh />readspeed("/test.bin", 256) >File read speed: 492640 byte/s > >finsh />readspeed("/test.bin", 512) >File read speed: 530560 byte/s > >finsh />readspeed("/test.bin", 513) >File read speed: 500160 byte/s > >finsh />readspeed("/test.bin", 1024) >File read speed: 574760 byte/s > >finsh />readspeed("/test.bin", 2048) >File read speed: 612360 byte/s > >finsh />readspeed("/test.bin", 4096) >File read speed: 633080 byte/s ---
presto
2012-08-27
这家伙很懒,什么也没写!
4G C10卡上更多测试结果, ``` finsh>>file_test(2048) File speed test with 10MB write and read of 2048 bytes a block Writing ... speed 584 kB/s Reading ... speed 979 kB/s finsh>>file_test(1024) File speed test with 10MB write and read of 1024 bytes a block Writing ... speed 282 kB/s Reading ... speed 718 kB/s finsh>>file_test(1025) File speed test with 10MB write and read of 1025 bytes a block Writing ... speed 68 kB/s Reading ... speed 704 kB/s finsh>>file_test(512) File speed test with 10MB write and read of 512 bytes a block Writing ... speed 40 kB/s Reading ... speed 765 kB/s ```
撰写答案
登录
注册新账号
关注者
0
被浏览
5.8k
关于作者
presto
这家伙很懒,什么也没写!
提问
35
回答
46
被采纳
1
关注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
rt-thread 小内存算法源码分析
2
env中添加lvgl软件包后,keil编译包--c99错误
3
【NXP-MCXA153】 定时器驱动移植
4
GD32F450 看门狗驱动适配
5
【NXP-MCXA153】看门狗驱动移植
热门标签
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
次被采纳
红枫
7
个答案
1
次被采纳
Ryan_CW
5
个答案
1
次被采纳
张世争
4
个答案
1
次被采纳
本月文章贡献
YZRD
3
篇文章
6
次点赞
catcatbing
3
篇文章
6
次点赞
lizimu
2
篇文章
11
次点赞
qq1078249029
2
篇文章
2
次点赞
xnosky
2
篇文章
1
次点赞
回到
顶部
发布
问题
分享
好友
手机
浏览
扫码手机浏览
投诉
建议
回到
底部