I have version.c file with following line:
const uint8_t ID_SoftwareId[] = { 'A', 'B', '0', '1', '0', '\0'};
I want to pass the A
and B
into this file through a definition.
I tired few thigs but I usually end up with Too many initializers
warning from gcc.
Any ideas?