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.

cla data ram variable initialization problem

Other Parts Discussed in Thread: TMS320F28069

hello all,
i am using TMS320F28069 with CLA.

I  want to initialize cla variables from outside of cla, as my cla program memory is almost full and I cannot store all variable initialization in any cla tasks (as shown in example of control suite)
so I am first mapping memory to cpu by RAM2E = 0; then initializing all the variables.

after the initialization I am mapping memory again to CLA by RAM2E = 1.

(this trick is suggested in this post http://e2e.ti.com/support/microcontrollers/c2000/f/171/t/185082.aspx)

When doing such thing i am facing a problem.

the "float" variables are getting initialized but "short" variable remains unchanged during initialization process.

what could be the problem there...?