diff options
author | tmk <nobody@nowhere> | 2013-03-19 14:08:40 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-03-19 14:08:40 +0900 |
commit | 9a106537f64fe61af6048b41262f002ce6a716d9 (patch) | |
tree | 9df736d957945b5d3377b8cb5005946acd99bd61 /common/command.c | |
parent | 8580c8d291a432d5004c46321aa3c1b1626cdadd (diff) | |
download | qmk_firmware-9a106537f64fe61af6048b41262f002ce6a716d9.tar.gz qmk_firmware-9a106537f64fe61af6048b41262f002ce6a716d9.zip |
Add NO_PRINT and NO_DEBUG config options.
- NO_PRINT: disable print.h API(also disable debug.h)
- NO_DEBUG: disable debug.h API
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/common/command.c b/common/command.c index 372ca291e2..cb98e1d5f2 100644 --- a/common/command.c +++ b/common/command.c @@ -98,7 +98,6 @@ bool command_extra(uint8_t code) ***********************************************************/ static void command_common_help(void) { - print_enable = true; print("\n\n----- Command Help -----\n"); print("c: enter console mode\n"); print("d: toggle debug enable\n"); @@ -137,7 +136,8 @@ static void print_eeprom_config(void) eebyte = eeconfig_read_keyconf(); print("keyconf: "); print_hex8(eebyte); print("\n"); - keyconf kc = (keyconf){ .raw = eebyte }; + keyconf kc; + kc = (keyconf){ .raw = eebyte }; print("keyconf.swap_control_capslock: "); print_hex8(kc.swap_control_capslock); print("\n"); print("keyconf.capslock_to_control: "); print_hex8(kc.capslock_to_control); print("\n"); print("keyconf.swap_lalt_lgui: "); print_hex8(kc.swap_lalt_lgui); print("\n"); @@ -173,7 +173,6 @@ static bool command_common(uint8_t code) command_common_help(); break; case KC_C: - print_enable = true; debug_matrix = false; debug_keyboard = false; debug_mouse = false; @@ -239,15 +238,6 @@ static bool command_common(uint8_t code) case KC_T: // print timer print_val_hex32(timer_count); break; - case KC_P: // print toggle - if (print_enable) { - print("print disabled.\n"); - print_enable = false; - } else { - print_enable = true; - print("print enabled.\n"); - } - break; case KC_S: print("\n\n----- Status -----\n"); print_val_hex8(host_keyboard_leds()); @@ -320,7 +310,6 @@ static bool command_common(uint8_t code) ***********************************************************/ static void command_console_help(void) { - print_enable = true; print("\n\n----- Console Help -----\n"); print("ESC/q: quit\n"); #ifdef MOUSEKEY_ENABLE |