2013-08-29 06:17 PM
hi guys i'm new to stm32, i got a problem that i used sdio and fatfs to test maximum speed of write sd card, its only around 330kb/s but when i try to use sd card reader its up to 2mb/s, so i want to figure out why its so different between them and how can i fix it?
(i tried two ways of test: first use f_write function write 10k data once, second separate 10k data into 64byte package to send, result looks similar )i use dma mode 4bits bus #sdio-fatfs2013-09-02 05:46 AM
finally, the 32-bit limit inherent in the ST code. I'm not sure whats this
Card capacity less that 2^32 bytes, as represented by uint32_t2013-09-04 07:25 PM
oh, that's right. But i still confuse that when i try to enable bypass mode like SDIO_InitStructure.SDIO_ClockBypass = SDIO_ClockBypass_Disable to set clock over 24mhz all sdio function did nothing and no response, whats this problem?