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/TMS320F280049C: ccs script program

Part Number: TMS320F280049C

Tool/software: Code Composer Studio

Dear all

in the ccs project, I defined a constant array, for example,

const uint16 a[] = {1,2,3,...,234,checksum};

the checksum will be added at the end of this array.

normally this array is constant, it will not be changed.

but in debug progress, I will change some content of this array, then I will put this array into another checksum tool to generate new checksum and put it at the end of this array.

Now I am thinking if ccs can support the script to automatically complete this process, for example, transfer the below program to the script:

for(I=0;i<2560;i++)

b+ = a[i];  

if(…)

….

a[2560]=checksum;

thanks!

br

jjl3