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.

CCS/TM4C123GE6PM: How do I retrieve data from the EEPROM and dump it to a local file?

Part Number: TM4C123GE6PM

Tool/software: Code Composer Studio

Hey community,

I am wondering how I can retrieve sensor data being recorded/stored into the EEPROM and send it to some local file so that I may save it. I am not very hardware proficient (i am fine with coding) but I have no idea how to even connect to this thing properly, much less how to record/store/pull data.

Can anyone help? Thanks

  • There is no direct way to read the EEPROM contents. You will need a program running on the device that reads the contents of EEPROM. You can have that program just copy into a RAM buffer. Then you can save that RAM contents into a file using Code Composer Studio. Or, you can have that program output the contents through a peripheral such as a UART. Such a program can be designed to run from RAM loaded by CCS if you do not want to disturb the existing flash contents.