Tool/software: Code Composer Studio
Hello sir
I am using the CCS v7.3
I want to make the struct is 4-bytes alignment.
#pragma PACK (4);
struct test_a
{
char a;
short int b;
char d;
};
when I use the "#pragma PACK (4)", it show me a warning "unrecognized #pragma"
how to resolve it ?