-
|
Hi, i was working on the SimpleSender program and was wondering how i can use But it doesn't work. Is this functionality not part of the library? i couldn't find anything about hex support on the examples. Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Upon further research it turns out i didn;t understand what the library was actually doing.
|
Beta Was this translation helpful? Give feedback.
Upon further research it turns out i didn;t understand what the library was actually doing.
Its just using a macro that expands to print static variables using stringificaction at compile-time, so it wasn't gonna work for what i was doing.
/*
*/
#if !defined(STR_HELPER)
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
#endif