diff options
author | tmk <nobody@nowhere> | 2014-09-22 10:53:35 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-09-22 10:53:35 +0900 |
commit | dd3ab65ec348370e789f4136af2c6cdb95c2532c (patch) | |
tree | 671949de54ed5fdbb938503bd417ddf4cb70c859 /common/debug.c | |
parent | b9e265368fde73daff069788dcb58c8230d01b32 (diff) | |
parent | e3f4f7d8c4dd821ff47caa8a22318c674f43a4e9 (diff) | |
download | firmware-dd3ab65ec348370e789f4136af2c6cdb95c2532c.tar.gz firmware-dd3ab65ec348370e789f4136af2c6cdb95c2532c.tar.bz2 firmware-dd3ab65ec348370e789f4136af2c6cdb95c2532c.zip |
Merge branch 'usb_usb_fix'
Diffstat (limited to 'common/debug.c')
-rw-r--r-- | common/debug.c | 12 |
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, +}; + |