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.

RM57L843: N2HET instruction array name mismatch

Part Number: RM57L843
Other Parts Discussed in Thread: HALCOGEN

Tool/software:

HI,

I am using HET IDE to generate my own N2HET code. When I assembly N2HET assembly code, it generate C and H files with instruction array defined as below

HET_MEMORY const HET_INIT0_PST[58] = 

{

...........

...........

};

Whereas in hetInit function in HL_het.c file generated by Halcogen expects HET_INIT1_PST as shown below. Is there a way to ensure both are same instead of manually editing the file name everytime we assemble?

(void)memcpy((void*)hetRAM2, (void*)HET_INIT1_PST, sizeof(HET_INIT1_PST));

Thanks,

Ravi