Tool/software: Code Composer Studio
Hi everyone
I'm working with a C2000 MCU. currently, i have a problem with the "CLA" module, i'm made my own code base on the example "cla_adc_fir32" (i use ePWM to periodically read the ADC, the end of conversion of the adc trigger a CLA task) but i have the problem with internal variables of the CLA. For example, if i declare a variable inside the CLA, the output doesn't take this value, and i get this warning:
"warning #10247-D: creating output section ".scratchpad" without a SECTIONS specification"
If i try to make a simple operation in the CLA, just like:
__interrupt void Cla1Task7 (void)
{
float A1, A2;
A1 = 5000;
A2 = 2000;
X = A1 + A2; //(X is a Cla1ToCpuMsgRAM Float variable)
}
The X result is 0, so, i don't know what is happening.
Any answer will be hellpfull
Thanks!