diff options
author | tmk <nobody@nowhere> | 2013-04-07 08:39:52 +0200 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-04-07 08:39:52 +0200 |
commit | e59fb6f908e3e05ed135bf6d004524b0b6bf9119 (patch) | |
tree | 46b5191bd9e6c591bc13e05aa97a0454f30b1897 /common/keyboard.c | |
parent | 78fd5a715464e72df08bcf683ca45b63c2df490f (diff) | |
parent | 4e93b3fa67d3b8170de2f05322738e08ac17948e (diff) | |
download | qmk_firmware-e59fb6f908e3e05ed135bf6d004524b0b6bf9119.tar.gz qmk_firmware-e59fb6f908e3e05ed135bf6d004524b0b6bf9119.tar.xz |
Merge branch 'virtual_dipsw'
Diffstat (limited to 'common/keyboard.c')
-rw-r--r-- | common/keyboard.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/common/keyboard.c b/common/keyboard.c index cb0dc06e6..6bc6fae6e 100644 --- a/common/keyboard.c +++ b/common/keyboard.c @@ -64,18 +64,6 @@ void keyboard_init(void) #ifdef BOOTMAGIC_ENABLE bootmagic(); - - if (eeconfig_is_enabled()) { - uint8_t config; - config = eeconfig_read_debug(); - // ignored if debug is enabled by program before. - if (!debug_enable) debug_enable = (config & EECONFIG_DEBUG_ENABLE); - if (!debug_matrix) debug_matrix = (config & EECONFIG_DEBUG_MATRIX); - if (!debug_keyboard) debug_keyboard = (config & EECONFIG_DEBUG_KEYBOARD); - if (!debug_mouse) debug_mouse = (config & EECONFIG_DEBUG_MOUSE); - } else { - eeconfig_init(); - } #endif } |