Part Number: TMS320F280039C
Tool/software:
typedef struct
{
float a;
float b;
int c;
float d;
float e;
int f;
int g;
Uint16 h;
float i;
float j;
int k;
int l;
float m;
float n;
float o;
int p;
int q;
}Test_dat_strut1;This is the struct I used to test, I observed in the simulation that the variable c takes up 32 bits, I tried to add the __attribute__((packed)) and #pragma pack(1) commands to the struct definition, but none worked, since this struct is going to be used in communication, how do I unalign the struct