Other Parts Discussed in Thread: HALCOGEN
Tool/software: TI C/C++ Compiler
Hi, I am trying to get a few bytes data saved on RAM after I perform a software reset (write 1<<15 in SYSECR).
I have tried to use PERSISTENTf like this
#pragma PERSISTENT(x)
#pragma location = 0x0801FFF0 //memory address in RAM of your choice
static uint32_t x;
But it doesn't seems to work.