I am exploring options to store and read data in an organized way with SD card. I am able to properly store Binary data in the .txt file using (v1.3.0\zephyr\samples\subsys\fs\fat_fs) but accessing the data seems difficult because the data is unorganized. Hence I was thinking of using CSV file for the same so that I can store the data column wise. But I didnt find any usage examples for the same.
Is there any way where I can map my SD card in certain blocks and access it block by block so that its efficient? Or is CSV a better option to do it?
Can I access the page table of the SD card to MAP it according to my needs? I am confused how to proceed forward.