I'm working on FATFS demo code for LaunchXL TM4C1294 where I made a botch SDCard card with soldered wire to the DIL header (see picture). It worked fine.
I now studying the code and do changes to be integrated into other projects (RTOS). I just starting to read how to append data to the filename every 100mSec.
I managed to track it down in the code library and identified FATFS which is 0.11a version which is 2015 release. The most recent is now 0.14a. I note in the changelog (R0.12a) that there is an append feature added so I'm looking to upgrade to R014a.
R0.12a (July 10, 2016)
....
Added a file open method FA_OPEN_APPEND. An f_lseek() following f_open() is no longer needed.
Fixed compilation fails at some configurations, _USE_FASTSEEK and _USE_FORWARD.
....
Grasping some straws, Is there any warning or issue I need to be aware of while doing these changes from R0.11a to R0.14a?, would there be any side effects to be aware of?
I also note the ramdisc.c is 512 byte, what does this mean, can it be populated until nearly full and then do append to the filename or discrete append to the filename?
What the maximum SPI clock to be used. I hear many issues, why demo use 400KHz?
Thanks.