Hi all,
I'm using the MSP430 dev board (usb-80) and am communicating with a few peripherals. Everything work fine, but whenever I try to create a large array everything goes to crap. I don't get an error message or anything, but the program doesn't work properly. As soon as I comment out the array creation it works fine.
The code is simply
unsigned char Array1[528];
As you can see, the array is meant to be a 1x528 vector of type unsigned char. When I compile the code, it works fine but I don't have press F8 (Resume); it has already started the code automatically, but the program itself does not perform as it should.
Any ideas why this is? Is there a size limit on how large of an array I can create?
Thanks in advance...