Hi I have a very silly question. I have been getting this error and I can't figure out why
char value = 0x08;
char Command[2] = {value, 0x00};
I get an error: expression must have a constant value, if I try to compile this way, but i don't get an error if I try to compile it this way
char Command[2] = {0x08, 0x00};
i don't see why it will throw me the error
Thanks