The build dies on the following lines:
__no_init volatile char Flash_Addr[4] @ 0x10F0; // Flash address set randomly
__no_init volatile int tempOffset @ 0x10F4; // Temperature offset set at production
So what is the CCE equivalent of these lines? Do I just remove the "__no_init" part since CCE does not init variables by default?? It also looks like it does not like the @ 0x10F4 and @ 0x10F0 which I assume are assigning hw locations for these "variables". What is the proper way to set HW locations in CCE?