Other Parts Discussed in Thread: SYSBIOS,
I am trying to add SD card functionality to my design (non SYSBIOS) and I have got the sd_card_m3 example to work. I want to update to the 11 year more up to date version of FatFs available here http://elm-chan.org/fsw/ff/00index_e.html and I'm struggling with the updates to the mmc-concerto.c file which is the equivalent for the mmc.c file in the FatFs documentation. There are several new functions added so I figured the best approach would be to modify the existing mmc-concerto.c file.
My hardware is the same as the ControlCard except that I'm using SSI2 rather than SSI0 but that chage has already been sucessfully adapted to with running 0.04b code.
Has anyone already done this and, if so, is there any chance of getting hold of an updated mmc-concerto.c file?
If not, I'd like to get advice as to which file is the closest in the ffsample.zip - to start with, the old 0.04b version of mmc-concerto.c #defines all commands with 0x40 added like this...
#define CMD10 (0x40+10) /* SEND_CID */
but the example file for the stm32f1 #defines it like this...
#define CMD10 (10) /* SEND_CID */
So I don't get why the extra bit is being set.
Any guidance or assistance is much appreciated.
Ted