At First, I created a structure that represents a data sample and then created an array made of a number of these sample structures. I then tried to populate the samples with data. It would compile but then the device would not run normally.
I reduced the complexity of the array populating to the simplest example I could think of and still get the same problem. The code runs completely normally until I add the "TempArray[TempCounter] = 0; " line. then it will compile but not execute. this is on the 8962 demo board
any ideas.
int TempArray[100];
int TempCounter;
for (TempCounter=1;TempCounter < 50;TempCounter++ )
{ TempArray[TempCounter] = 0; }