Hello everyone,
Yesterday, I started experimenting with the TMS320C6678. The Hello World application loaded so I tried going a little further. Step by step it became a bigger project but now I have a problem. For your information: I'm a beginner.
I found something called bit fields on the internet with a sample code which contained this piece of code:
struct _ACQ_STATUS_T
{
// MSB
bool RESERVED1:14;
bool analogInputOverflow:1;
bool analogInputDataAvail:1;
// LSB
};
It first looked like it worked until CCS(v5) complained about
bool RESERVED1:14;
It says: #106 invalid size for bit field.
My question for you guys, how to solve this?
Thanks in advance,
Lars Jansen
The Netherlands