Hi all,
I'm struggling to move some code from PIC24 to the f28069.
As the c28x is 16bit, all the definitions I was expecting to be 8 bits, are actually 16...
I have the following union. How could I define this in order to be able to extract the 2 bytes from the word?
Thank you for your time.
typedef union
{
unsigned short Word;
unsigned char Byte[2];
} BTW;