aboutsummaryrefslogtreecommitdiffstats
path: root/common/debug.c
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-09-22 10:42:20 +0900
committertmk <nobody@nowhere>2014-09-22 10:42:20 +0900
commitea524d7befeb743c5316cb472f9180536ced5862 (patch)
tree1be232413b52bcac278d25be074c5394f069c283 /common/debug.c
parentb9e265368fde73daff069788dcb58c8230d01b32 (diff)
downloadfirmware-ea524d7befeb743c5316cb472f9180536ced5862.tar.gz
firmware-ea524d7befeb743c5316cb472f9180536ced5862.tar.bz2
firmware-ea524d7befeb743c5316cb472f9180536ced5862.zip
Adhoc fix compile error of usb_usb
Diffstat (limited to 'common/debug.c')
-rw-r--r--common/debug.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/common/debug.c b/common/debug.c
new file mode 100644
index 000000000..c4fa3a05b
--- /dev/null
+++ b/common/debug.c
@@ -0,0 +1,12 @@
+#include <stdbool.h>
+#include "debug.h"
+
+
+//debug_config_t debug_config = { .enable = false, .matrix = false };
+debug_config_t debug_config = {
+ .enable = false,
+ .matrix = false,
+ .keyboard = false,
+ .mouse = false,
+};
+