Tool/software: Code Composer Studio
This allows me to reference the max variable in the CLA:
//#pragma DATA_SECTION(min,"CpuToCla1MsgRAM"); #pragma DATA_SECTION(max,"CpuToCla1MsgRAM"); //int min; int max;
This will not allow me to reference either variable in the CLA:
#pragma DATA_SECTION(min,"CpuToCla1MsgRAM"); #pragma DATA_SECTION(max,"CpuToCla1MsgRAM"); int min; int max;
Any idea why?