It looks to me like you are trying to concatenate a number with a string and to make things worse you are trying to do it within a variable declaration and add to the problem you are trying to put it in PROGMEM
Is that really likely to work ?
What problem are you trying to solve by doing this ?
UKHeliBob:
It looks to me like you are trying to concatenate a number with a string and to make things worse you are trying to do it within a variable declaration and add to the problem you are trying to put it in PROGMEM
Yes, this is exactly true.
If this works it saves development and processor time. No need to concatenate strings at runtime. If there's an int to char[] preprocessor directive it would work. I'm a long time developer but not in C/C++, i'm learning. I need some enum values in javascript, this is how I can combine them in
Something like that is what i have and it works but I want to optimize the code. Thats why I ask if it would be possible. Looks to me that the preprocessor / compiler should be capable of doing these kind of things as all sizes / values are known. But if not, ok, I skip the idea.