Is there a way to define macro for value in array:
For exemple I have :
#define COMSS_GETNBERNEWVALUE uca1_NbreReceivedValue
#define COMSS_GETNBERNEWVALUE2 uca2_NbreReceivedValue
#define COMSS_GETNBERNEWVALUETEST uca6_NbreReceivedValue
And I would like to store 2 similar data in a macro definition. Something like this:
#define COMSS_GETNBERNEWVALUE[3] {uca1_NbreReceivedValue,uca2_NbreReceivedValue, uca6_NbreReceivedValue}