Hello,
I have a question related to CCS version 4.x. My question is about packing structures.
In IAR, you just do:
#pragma pack(1)
typedef struct
{
UINT mychar;
} mystruct;
#pragma pack()
In GCC, you do it like this
typedef struct
{
UINT mychar;
}__attribute__ ((__packed__)) mystruct;
Do you know how you pack a structure in the CCS v4.x?
Is this possible?
Also, is this supported in Stellaris and/or C2000?
Thanks again!
Paul