2019-06-06 01:45 AM
Hello, ST experts
STM32F415RGT6 is used on custom board. Everything looks fine except that SDIO opertions.
f_write function is called at an interval about 500ms to write 512Bytes to SD card. SDIO_CLK is 24MHz, 4bit bus wide. I really don't know why there are activities lasting 3ms on sdio_cmd pin.
Best Regards
Yang
Solved! Go to Solution.
2019-06-06 04:43 AM
Haven't timed it, but single sector writing is very inefficient, there is a lot of command overhead, blocks on the media are typically around 128KB. If your writes aren't aligned FatFs will need to read and write several sectors.
2019-06-06 04:43 AM
Haven't timed it, but single sector writing is very inefficient, there is a lot of command overhead, blocks on the media are typically around 128KB. If your writes aren't aligned FatFs will need to read and write several sectors.