Hello,
I am using Code Composer Studio v4 with an MSP430F2274 connected via the MSP430FET-UIF.
Towards the end of the program, I can't use any variables as array indexes otherwise the program hangs.
For example,
x = array[0]; //this line will execute properly
int i = 0;
x = array[i]; //this line will not execute properly
I'm quite confused, as I've checked every variable and its declaration and can't find any issue.
If anyone has seen something like this before and has any guidance or suggestions, it would be much appreciated.
Thanks,
Zack