I'm using CCS5.3 for TMS320F2808.
In my code, I defined a global array with initialization, such as
int arr[] = {1, 2, 3};
When I loaded the program and began debugging the program in CCS, the array is of length 3, but the initial value of every element was set to zero.
As I know, this method to defined an initialized array is normal practice. Why it doesn't work for this compiler?
Thx
Xiang Chao