Hi,
Can anyone tell me how to clear/reset HET RAM memory during run-time?
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.
Hi,
Can anyone tell me how to clear/reset HET RAM memory during run-time?
Shincy Shaji ,
At the initialisation of your program, at the end of hetInit() in (HL_)het.c, the HET code is copied into the HET RAM.
You'll find a line similar to this:
(void)memcpy((void*)hetRAM1, (void*)HET_INIT0_PST, sizeof(HET_INIT0_PST));
You could try and perform that same action at the point in your code where you want to reset the memory.