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/CC1310: Predefined data at given adress in hex file

Part Number: CC1310

Tool/software: Code Composer Studio

Hi 

We are planing to start production soon. 

We need a defined unique id in all chips, the production facility must manipulate the .hex file with the number for each device.  

I am trying to figure out how to get data at a given address and have that it in my hex file. 

I have this bit of code:

#define ADDRESS 0x1A000
#pragma LOCATION( myID , ADDRESS );
static char myID[5] = {0x11, 0x11, 0x11, 0x11, 0x11};

But I cant the data back anything in my hex file. 

Any tips on how to achieve this?

Any input is appreciated. 

Thanks