Hi all,
It seems that the 5.x cgtools for C2000 do not support C99 struct and union initialization like
union {
char birthday[9];
int age;
float weight;
} people = { .age = 14 };
This is quite handy as you do not have to initialize the whole struct/union.
I just want to get this confirmed and ask if there are plans to support this C99 feature!?