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.
Hello, I am using "TMS320F28003x Flash API Version 1.58.10.00" api, i want to write some data in flash and read it back but there is no "read" function available.
Sanjay,
Flash API is not needed to read the data. Just read the content from the memory which is in Flash. You can even see the value in memory browser.
Regards, Santosh
yes, i checked in memory browser and value is correct, but i need to read the data in some variable. Please tell me how to do that.
Sanjay,
It is same how you read a memory address in C language.
int x = *(int *)Flashh_address;
I am little confused. Have you tried this? Not sure what is the issue you are encountering.
Regards, Santosh