Other Parts Discussed in Thread: C2000WARE
Hi TI,
I want to use the MCU to get a .bin file,what I should do?Does the FATFS support that read a bin file?
Best regards,
Frank
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi TI,
I want to use the MCU to get a .bin file,what I should do?Does the FATFS support that read a bin file?
Best regards,
Frank
Frank,
For clarification:
I would consider EMIF / XINTF and SPI to be physical layer interfaces that govern the transmission of raw data. EMIF / XINTF are meant to interface with external memory ICs like SRAM, and SPI is used to interface with external ICs with a serial port.
SD and CF have their own physical layer specifications. SD includes support for a serial port that works with SPI, but mostly for legacy and compatibility reasons. The fully realized SD interface is more efficient and involved than SPI. There is no SD compatibility with EMIF / XINTF. As far as I know, CF is generally not compatible with either EMIF / XINTF or SPI.
A file system like FATFS is needed if you want media interoperability with operating systems. The concept of a .bin file is at the application level. The MCU will be able to access raw data using its physical layer interfaces, but it will have no native understanding of what a .bin file is.
-Tommy