summaryrefslogtreecommitdiff
path: root/util.h
diff options
context:
space:
mode:
authortmk2010-10-26 21:32:45 +0900
committertmk2010-10-26 21:32:45 +0900
commit461e0d3d8c82cc78d29d3115af3c417bb51bb50f (patch)
tree844b28eed904f72aa18873f25de435379fa1bad3 /util.h
parent7a336b05ec2d1056fe2206ae218199c66e8980da (diff)
ADD: keymap macro for human to read easier
ADD: controller.h for controller board definition(teensy) ADD: debug toggle
Diffstat (limited to 'util.h')
-rw-r--r--util.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/util.h b/util.h
new file mode 100644
index 000000000..256bda020
--- /dev/null
+++ b/util.h
@@ -0,0 +1,7 @@
+#ifndef UTIL_H
+#define UTIL_H 1
+
+#define XSTR(s) STR(s)
+#define STR(s) #s
+
+#endif