Tool/software: Code Composer Studio
I am trying to run my code from _FLASH _STANDALONE on a TMS320F28377D.
I am using CCS Version: 9.1.0.00010 with CGT v18.12.3 LTS.
No updates are available for my system.
I see that my initialized global variables are not being initialized on CPU2.
I have narrowed the problem down to variables that are in global shared memory on CPU2.
The problem does not occur with local shared memory variables or on CPU1.
CPU1 assigns ownership of the global shared areas being used by CPU2 to CPU2 then sends the sync signal.
The variables are initialized when I run everything from RAM with the emulator.
I need the local shared memory for the CLA.
Do I have to do something special to get these variables initialized on CPU2 at boot time or do I have to just initialize them manually on power up?