2018-07-30 04:58 AM
Hello, I use SDIO interface to SD Card. I use FATs library. But I want to use SDIO interface. How do I do ?
2018-07-30 05:26 AM
Interface to what?
You should perhaps look at the SDIO library code, and associated reference manual documentation, and familiarize yourself with the command/response model, and data transfer phases.
2018-07-30 05:40 AM
I see thank you. I am try it.
2018-07-30 05:45 AM
What are you trying to actually do? Interface to a WiFi modules or some not-card device?
There might be some other examples of that.
The sector reading level is exposed in the FatFs DISKIO layers, and the F4 should also have SDIO examples, again reading/writing sectors directly to the media.
2018-07-30 06:54 AM
now I use FatFs library to write/read SD card. I did not find SDIO examples
2018-07-30 08:08 AM
STM32Cube_FW_F4_V1.21.0\Projects\STM324xG_EVAL\Examples\SDIO
2018-07-30 10:02 PM
Thank you for answered. I found this example now.
2018-07-31 10:20 PM
Hello, How to read certain line in the text ?
2018-08-01 01:02 AM
Not sure I understand the question.
If you want to understand how file data is stored in the blocks, and managed at a file/cluster level, you should read some documentation on the FAT File System, probably some MSDOS era manuals and the like which cover the mechanics.
2018-08-01 01:20 AM
Thank you for your answered. I willl read