diff options
author | tmk <nobody@nowhere> | 2012-09-02 23:47:18 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2012-09-02 23:47:18 +0900 |
commit | c77c5043a121f195b3a552feb8283424a0652ce2 (patch) | |
tree | 5b20b8c5cb7702408ffc10af0c259d71e6ce4ce9 /common/debug.c | |
parent | b17f52ebe188b612d0cb063bd2386434a952aaf4 (diff) |
usb_hid: Fix timer size uint16_t to uint32_t;
Diffstat (limited to 'common/debug.c')
-rw-r--r-- | common/debug.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/common/debug.c b/common/debug.c new file mode 100644 index 0000000000..41d566ee3a --- /dev/null +++ b/common/debug.c @@ -0,0 +1,9 @@ +#include <stdbool.h> +#include "debug.h" + + +bool debug_enable = false; +bool debug_matrix = false; +bool debug_keyboard = false; +bool debug_mouse = false; + |