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.
Tool/software: Code Composer Studio
Hi team,
hex files (Intel-Hex or S-Record files) are organized byte-wise whereas RAM and flash on chip have
a 16-bit structure.
This results in following question concerning the transfer to flash, using TI's compiled flash library:
What must I do:
1. transferring every byte in one 16-bit word, OR
2. Putting each "pair" of 2 bytes into one word (1st byte ==> highbyte; 2nd byte ==> lowbyte) OR
3. Putting each "pair" of 2 bytes into one word (1st byte ==> lowbyte; 2nd byte ==> highbyte)
before transferring that word to flash?
Unfortunately, the flashlib example contains just 16-bit data transfers so that nothing
can be inferred about writing code to flash (more comprehensive documentation is urgently recommended!!).
Is there anyone who has experience with this topic???
Thanks & best regards,
Goetz