Hi,
When declaring a buffer like this:
#define RXA0_BUFFER_SIZE 256
unsigned char buffer_rxuartA0[RXA0_BUFFER_SIZE];
everything builds fine, but after loading into MSP430 target, it fails on startup (exception)
After changing to:
unsigned char buffer_rxuartA0[256];
Everything works fine on the target.
Why???
Jan