We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 447c8ad commit 5a2eba2Copy full SHA for 5a2eba2
cores/arduino/utils.h
@@ -27,4 +27,8 @@
27
// Concatenate 2 strings separated by space
28
#define CONCATS(s1, s2) (s1" " s2)
29
30
+// Stringification
31
+#define xstr(s) str(s)
32
+#define str(s) #s
33
+
34
#endif
cores/arduino/wiring.h
@@ -28,6 +28,7 @@
#include "binary.h"
#include "itoa.h"
+#include "utils.h"
#include "wiring_analog.h"
#include "wiring_constants.h"
0 commit comments