This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CCS problem (bug?) with indexes

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