Tool/software: TI C/C++ Compiler
If I use:
const int8_t lenBuffer=20;
struct timing
{
int32_t runNumber;
int32_t tic;
int8_t isUp;
} buffer[ lenBuffer ];
it compiles with a warning about being not standard. If I try with a #define, it does not even compile.
What is the preferred way to do it, in CCS? I mean, I prefer to use a defined constant, like lenTampon, instead of a magical constant like 20 here and there, in the C code.
