]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/common/command.c
Merge pull request #894 from dchagniot/ergodoxDvorakEmacs
[qmk_firmware.git] / tmk_core / common / command.c
1 /*
2 Copyright 2011 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program.  If not, see <http://www.gnu.org/licenses/>.
16 */
17 #include <stdint.h>
18 #include <stdbool.h>
19 #include "wait.h"
20 #include "keycode.h"
21 #include "host.h"
22 #include "keymap.h"
23 #include "print.h"
24 #include "debug.h"
25 #include "util.h"
26 #include "timer.h"
27 #include "keyboard.h"
28 #include "bootloader.h"
29 #include "action_layer.h"
30 #include "action_util.h"
31 #include "eeconfig.h"
32 #include "sleep_led.h"
33 #include "led.h"
34 #include "command.h"
35 #include "backlight.h"
36 #include "quantum.h"
37 #include "version.h"
38
39 #ifdef MOUSEKEY_ENABLE
40 #include "mousekey.h"
41 #endif
42
43 #ifdef PROTOCOL_PJRC
44         #include "usb_keyboard.h"
45                 #ifdef EXTRAKEY_ENABLE
46                 #include "usb_extra.h"
47         #endif
48 #endif
49
50 #ifdef PROTOCOL_VUSB
51         #include "usbdrv.h"
52 #endif
53
54 #ifdef AUDIO_ENABLE
55     #include "audio.h"
56 #endif /* AUDIO_ENABLE */
57
58
59 static bool command_common(uint8_t code);
60 static void command_common_help(void);
61 static void print_version(void);
62 static void print_status(void);
63 static bool command_console(uint8_t code);
64 static void command_console_help(void);
65 #ifdef MOUSEKEY_ENABLE
66 static bool mousekey_console(uint8_t code);
67 static void mousekey_console_help(void);
68 #endif
69
70 static void switch_default_layer(uint8_t layer);
71
72
73 command_state_t command_state = ONESHOT;
74
75
76 bool command_proc(uint8_t code)
77 {
78     switch (command_state) {
79         case ONESHOT:
80             if (!IS_COMMAND())
81                 return false;
82             return (command_extra(code) || command_common(code));
83             break;
84         case CONSOLE:
85             if (IS_COMMAND())
86                 return (command_extra(code) || command_common(code));
87             else
88                 return (command_console_extra(code) || command_console(code));
89             break;
90 #ifdef MOUSEKEY_ENABLE
91         case MOUSEKEY:
92             mousekey_console(code);
93             break;
94 #endif
95         default:
96             command_state = ONESHOT;
97             return false;
98     }
99     return true;
100 }
101
102 /* TODO: Refactoring is needed. */
103 /* This allows to define extra commands. return false when not processed. */
104 bool command_extra(uint8_t code) __attribute__ ((weak));
105 bool command_extra(uint8_t code)
106 {
107     (void)code;
108     return false;
109 }
110
111 bool command_console_extra(uint8_t code) __attribute__ ((weak));
112 bool command_console_extra(uint8_t code)
113 {
114     (void)code;
115     return false;
116 }
117
118
119 /***********************************************************
120  * Command common
121  ***********************************************************/
122 static void command_common_help(void)
123 {
124         print(                            "\n\t- Magic -\n"
125                 STR(MAGIC_KEY_DEBUG       ) ":  Debug Message Toggle\n"
126                 STR(MAGIC_KEY_DEBUG_MATRIX) ":  Matrix Debug Mode Toggle - Show keypresses in matrix grid\n"
127                 STR(MAGIC_KEY_DEBUG_KBD   ) ":  Keyboard Debug Toggle - Show keypress report\n"
128                 STR(MAGIC_KEY_DEBUG_MOUSE ) ":  Debug Mouse Toggle\n"
129                 STR(MAGIC_KEY_VERSION     ) ":  Version\n"
130                 STR(MAGIC_KEY_STATUS      ) ":  Status\n"
131                 STR(MAGIC_KEY_CONSOLE     ) ":  Activate Console Mode\n"
132
133 #if MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
134                 STR(MAGIC_KEY_LAYER0      ) ":  Switch to Layer 0\n"
135                 STR(MAGIC_KEY_LAYER1      ) ":  Switch to Layer 1\n"
136                 STR(MAGIC_KEY_LAYER2      ) ":  Switch to Layer 2\n"
137                 STR(MAGIC_KEY_LAYER3      ) ":  Switch to Layer 3\n"
138                 STR(MAGIC_KEY_LAYER4      ) ":  Switch to Layer 4\n"
139                 STR(MAGIC_KEY_LAYER5      ) ":  Switch to Layer 5\n"
140                 STR(MAGIC_KEY_LAYER6      ) ":  Switch to Layer 6\n"
141                 STR(MAGIC_KEY_LAYER7      ) ":  Switch to Layer 7\n"
142                 STR(MAGIC_KEY_LAYER8      ) ":  Switch to Layer 8\n"
143                 STR(MAGIC_KEY_LAYER9      ) ":  Switch to Layer 9\n"
144 #endif
145
146 #if MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
147                                             "F1-F10:    Switch to Layer 0-9 (F10 = L0)\n"
148 #endif
149
150 #if MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
151                                             "0-9:       Switch to Layer 0-9\n"
152 #endif
153
154                 STR(MAGIC_KEY_LAYER0_ALT1 ) ":  Switch to Layer 0 (alternate key 1)\n"
155                 STR(MAGIC_KEY_LAYER0_ALT2 ) ":  Switch to Layer 0 (alternate key 2)\n"
156                 STR(MAGIC_KEY_BOOTLOADER  ) ":  Jump to Bootloader (Reset)\n"
157
158 #ifdef KEYBOARD_LOCK_ENABLE
159                 STR(MAGIC_KEY_LOCK        ) ":  Lock\n"
160 #endif
161
162 #ifdef BOOTMAGIC_ENABLE
163                 STR(MAGIC_KEY_EEPROM      ) ":  Print EEPROM Settings\n"
164 #endif
165
166 #ifdef NKRO_ENABLE
167                 STR(MAGIC_KEY_NKRO        ) ":  NKRO Toggle\n"
168 #endif
169
170 #ifdef SLEEP_LED_ENABLE
171                 STR(MAGIC_KEY_SLEEP_LED   ) ":  Sleep LED Test\n"
172 #endif
173     );
174 }
175
176 static void print_version(void)
177 {
178         // print version & information
179     print("\n\t- Version -\n");
180     print("DESC: " STR(DESCRIPTION) "\n");
181     print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") "
182           "PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") "
183           "VER: " STR(DEVICE_VER) "\n");
184     print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n");
185
186     /* build options */
187     print("OPTIONS:"
188
189 #ifdef PROTOCOL_PJRC
190             " PJRC"
191 #endif
192 #ifdef PROTOCOL_LUFA
193             " LUFA"
194 #endif
195 #ifdef PROTOCOL_VUSB
196             " VUSB"
197 #endif
198 #ifdef BOOTMAGIC_ENABLE
199             " BOOTMAGIC"
200 #endif
201 #ifdef MOUSEKEY_ENABLE
202             " MOUSEKEY"
203 #endif
204 #ifdef EXTRAKEY_ENABLE
205             " EXTRAKEY"
206 #endif
207 #ifdef CONSOLE_ENABLE
208             " CONSOLE"
209 #endif
210 #ifdef COMMAND_ENABLE
211             " COMMAND"
212 #endif
213 #ifdef NKRO_ENABLE
214             " NKRO"
215 #endif
216 #ifdef KEYMAP_SECTION_ENABLE
217             " KEYMAP_SECTION"
218 #endif
219
220             " " STR(BOOTLOADER_SIZE) "\n");
221
222     print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__)
223 #if defined(__AVR__)
224           " AVR-LIBC: " __AVR_LIBC_VERSION_STRING__
225           " AVR_ARCH: avr" STR(__AVR_ARCH__)
226 #endif
227                   "\n");
228
229         return;
230 }
231
232 static void print_status(void)
233 {
234
235     print("\n\t- Status -\n");
236
237     print_val_hex8(host_keyboard_leds());
238     print_val_hex8(keyboard_protocol);
239     print_val_hex8(keyboard_idle);
240 #ifdef NKRO_ENABLE
241     print_val_hex8(keymap_config.nkro);
242 #endif
243     print_val_hex32(timer_read32());
244
245 #ifdef PROTOCOL_PJRC
246     print_val_hex8(UDCON);
247     print_val_hex8(UDIEN);
248     print_val_hex8(UDINT);
249     print_val_hex8(usb_keyboard_leds);
250     print_val_hex8(usb_keyboard_idle_count);
251 #endif
252
253 #ifdef PROTOCOL_PJRC
254 #   if USB_COUNT_SOF
255     print_val_hex8(usbSofCount);
256 #   endif
257 #endif
258         return;
259 }
260
261 #ifdef BOOTMAGIC_ENABLE
262 static void print_eeconfig(void)
263 {
264
265 // Print these variables if NO_PRINT or USER_PRINT are not defined.
266 #if !defined(NO_PRINT) && !defined(USER_PRINT)
267
268     print("default_layer: "); print_dec(eeconfig_read_default_layer()); print("\n");
269
270     debug_config_t dc;
271     dc.raw = eeconfig_read_debug();
272     print("debug_config.raw: "); print_hex8(dc.raw); print("\n");
273     print(".enable: "); print_dec(dc.enable); print("\n");
274     print(".matrix: "); print_dec(dc.matrix); print("\n");
275     print(".keyboard: "); print_dec(dc.keyboard); print("\n");
276     print(".mouse: "); print_dec(dc.mouse); print("\n");
277
278     keymap_config_t kc;
279     kc.raw = eeconfig_read_keymap();
280     print("keymap_config.raw: "); print_hex8(kc.raw); print("\n");
281     print(".swap_control_capslock: "); print_dec(kc.swap_control_capslock); print("\n");
282     print(".capslock_to_control: "); print_dec(kc.capslock_to_control); print("\n");
283     print(".swap_lalt_lgui: "); print_dec(kc.swap_lalt_lgui); print("\n");
284     print(".swap_ralt_rgui: "); print_dec(kc.swap_ralt_rgui); print("\n");
285     print(".no_gui: "); print_dec(kc.no_gui); print("\n");
286     print(".swap_grave_esc: "); print_dec(kc.swap_grave_esc); print("\n");
287     print(".swap_backslash_backspace: "); print_dec(kc.swap_backslash_backspace); print("\n");
288     print(".nkro: "); print_dec(kc.nkro); print("\n");
289
290 #ifdef BACKLIGHT_ENABLE
291     backlight_config_t bc;
292     bc.raw = eeconfig_read_backlight();
293     print("backlight_config.raw: "); print_hex8(bc.raw); print("\n");
294     print(".enable: "); print_dec(bc.enable); print("\n");
295     print(".level: "); print_dec(bc.level); print("\n");
296 #endif /* BACKLIGHT_ENABLE */
297
298 #endif /* !NO_PRINT */
299
300 }
301 #endif /* BOOTMAGIC_ENABLE */
302
303 static bool command_common(uint8_t code)
304 {
305
306 #ifdef KEYBOARD_LOCK_ENABLE
307     static host_driver_t *host_driver = 0;
308 #endif
309
310     switch (code) {
311
312 #ifdef SLEEP_LED_ENABLE
313
314                 // test breathing sleep LED
315         case MAGIC_KC(MAGIC_KEY_SLEEP_LED):
316             print("Sleep LED Test\n");
317             sleep_led_toggle();
318             led_set(host_keyboard_leds());
319             break;
320 #endif
321
322 #ifdef BOOTMAGIC_ENABLE
323
324                 // print stored eeprom config
325         case MAGIC_KC(MAGIC_KEY_EEPROM):
326             print("eeconfig:\n");
327             print_eeconfig();
328             break;
329 #endif
330
331 #ifdef KEYBOARD_LOCK_ENABLE
332
333                 // lock/unlock keyboard
334         case MAGIC_KC(MAGIC_KEY_LOCK):
335             if (host_get_driver()) {
336                 host_driver = host_get_driver();
337                 clear_keyboard();
338                 host_set_driver(0);
339                 print("Locked.\n");
340             } else {
341                 host_set_driver(host_driver);
342                 print("Unlocked.\n");
343             }
344             break;
345 #endif
346
347                 // print help
348         case MAGIC_KC(MAGIC_KEY_HELP1):
349         case MAGIC_KC(MAGIC_KEY_HELP2):
350             command_common_help();
351             break;
352
353                 // activate console
354         case MAGIC_KC(MAGIC_KEY_CONSOLE):
355             debug_matrix   = false;
356             debug_keyboard = false;
357             debug_mouse    = false;
358             debug_enable   = false;
359             command_console_help();
360             print("C> ");
361             command_state = CONSOLE;
362             break;
363
364         // jump to bootloader
365         case MAGIC_KC(MAGIC_KEY_BOOTLOADER):
366             clear_keyboard(); // clear to prevent stuck keys
367             print("\n\nJumping to bootloader... ");
368             #ifdef AUDIO_ENABLE
369                     stop_all_notes();
370                 shutdown_user();
371             #else
372                     wait_ms(1000);
373             #endif
374             bootloader_jump(); // not return
375             break;
376
377         // debug toggle
378         case MAGIC_KC(MAGIC_KEY_DEBUG):
379             debug_enable = !debug_enable;
380             if (debug_enable) {
381                 print("\ndebug: on\n");
382             } else {
383                 print("\ndebug: off\n");
384                 debug_matrix   = false;
385                 debug_keyboard = false;
386                 debug_mouse    = false;
387             }
388             break;
389
390         // debug matrix toggle
391         case MAGIC_KC(MAGIC_KEY_DEBUG_MATRIX):
392             debug_matrix = !debug_matrix;
393             if (debug_matrix) {
394                 print("\nmatrix: on\n");
395                 debug_enable = true;
396             } else {
397                 print("\nmatrix: off\n");
398             }
399             break;
400
401         // debug keyboard toggle
402         case MAGIC_KC(MAGIC_KEY_DEBUG_KBD):
403             debug_keyboard = !debug_keyboard;
404             if (debug_keyboard) {
405                 print("\nkeyboard: on\n");
406                 debug_enable = true;
407             } else {
408                 print("\nkeyboard: off\n");
409             }
410             break;
411
412         // debug mouse toggle
413         case MAGIC_KC(MAGIC_KEY_DEBUG_MOUSE):
414             debug_mouse = !debug_mouse;
415             if (debug_mouse) {
416                 print("\nmouse: on\n");
417                 debug_enable = true;
418             } else {
419                                 print("\nmouse: off\n");
420             }
421             break;
422
423                 // print version
424         case MAGIC_KC(MAGIC_KEY_VERSION):
425                 print_version();
426                     break;
427
428                 // print status
429                 case MAGIC_KC(MAGIC_KEY_STATUS):
430                         print_status();
431             break;
432
433 #ifdef NKRO_ENABLE
434
435                 // NKRO toggle
436         case MAGIC_KC(MAGIC_KEY_NKRO):
437             clear_keyboard(); // clear to prevent stuck keys
438             keymap_config.nkro = !keymap_config.nkro;
439             if (keymap_config.nkro) {
440                 print("NKRO: on\n");
441             } else {
442                 print("NKRO: off\n");
443             }
444             break;
445 #endif
446
447                 // switch layers
448
449                 case MAGIC_KC(MAGIC_KEY_LAYER0_ALT1):
450                 case MAGIC_KC(MAGIC_KEY_LAYER0_ALT2):
451             switch_default_layer(0);
452             break;
453
454 #if MAGIC_KEY_SWITCH_LAYER_WITH_CUSTOM
455
456                 case MAGIC_KC(MAGIC_KEY_LAYER0):
457             switch_default_layer(0);
458             break;
459
460                 case MAGIC_KC(MAGIC_KEY_LAYER1):
461             switch_default_layer(1);
462             break;
463
464                 case MAGIC_KC(MAGIC_KEY_LAYER2):
465             switch_default_layer(2);
466             break;
467
468                 case MAGIC_KC(MAGIC_KEY_LAYER3):
469             switch_default_layer(3);
470             break;
471
472                 case MAGIC_KC(MAGIC_KEY_LAYER4):
473             switch_default_layer(4);
474             break;
475
476                 case MAGIC_KC(MAGIC_KEY_LAYER5):
477             switch_default_layer(5);
478             break;
479
480                 case MAGIC_KC(MAGIC_KEY_LAYER6):
481             switch_default_layer(6);
482             break;
483
484                 case MAGIC_KC(MAGIC_KEY_LAYER7):
485             switch_default_layer(7);
486             break;
487
488                 case MAGIC_KC(MAGIC_KEY_LAYER8):
489             switch_default_layer(8);
490             break;
491
492                 case MAGIC_KC(MAGIC_KEY_LAYER9):
493             switch_default_layer(9);
494             break;
495 #endif
496
497
498 #if MAGIC_KEY_SWITCH_LAYER_WITH_FKEYS
499
500         case KC_F1 ... KC_F9:
501             switch_default_layer((code - KC_F1) + 1);
502             break;
503         case KC_F10:
504             switch_default_layer(0);
505             break;
506 #endif
507
508 #if MAGIC_KEY_SWITCH_LAYER_WITH_NKEYS
509
510         case KC_1 ... KC_9:
511             switch_default_layer((code - KC_1) + 1);
512             break;
513         case KC_0:
514             switch_default_layer(0);
515             break;
516 #endif
517
518         default:
519             print("?");
520             return false;
521     }
522     return true;
523 }
524
525
526 /***********************************************************
527  * Command console
528  ***********************************************************/
529 static void command_console_help(void)
530 {
531     print("\n\t- Console -\n"
532           "ESC/q:       quit\n"
533 #ifdef MOUSEKEY_ENABLE
534           "m:   mousekey\n"
535 #endif
536     );
537 }
538
539 static bool command_console(uint8_t code)
540 {
541     switch (code) {
542         case KC_H:
543         case KC_SLASH: /* ? */
544             command_console_help();
545             break;
546         case KC_Q:
547         case KC_ESC:
548             command_state = ONESHOT;
549             return false;
550 #ifdef MOUSEKEY_ENABLE
551         case KC_M:
552             mousekey_console_help();
553             print("M> ");
554             command_state = MOUSEKEY;
555             return true;
556 #endif
557         default:
558             print("?");
559             return false;
560     }
561     print("C> ");
562     return true;
563 }
564
565
566 #ifdef MOUSEKEY_ENABLE
567 /***********************************************************
568  * Mousekey console
569  ***********************************************************/
570 static uint8_t mousekey_param = 0;
571
572 static void mousekey_param_print(void)
573 {
574 // Print these variables if NO_PRINT or USER_PRINT are not defined.
575 #if !defined(NO_PRINT) && !defined(USER_PRINT)
576     print("\n\t- Values -\n");
577     print("1: delay(*10ms): "); pdec(mk_delay); print("\n");
578     print("2: interval(ms): "); pdec(mk_interval); print("\n");
579     print("3: max_speed: "); pdec(mk_max_speed); print("\n");
580     print("4: time_to_max: "); pdec(mk_time_to_max); print("\n");
581     print("5: wheel_max_speed: "); pdec(mk_wheel_max_speed); print("\n");
582     print("6: wheel_time_to_max: "); pdec(mk_wheel_time_to_max); print("\n");
583 #endif /* !NO_PRINT */
584
585 }
586
587 //#define PRINT_SET_VAL(v)  print(#v " = "); print_dec(v); print("\n");
588 #define PRINT_SET_VAL(v)  xprintf(#v " = %d\n", (v))
589 static void mousekey_param_inc(uint8_t param, uint8_t inc)
590 {
591     switch (param) {
592         case 1:
593             if (mk_delay + inc < UINT8_MAX)
594                 mk_delay += inc;
595             else
596                 mk_delay = UINT8_MAX;
597             PRINT_SET_VAL(mk_delay);
598             break;
599         case 2:
600             if (mk_interval + inc < UINT8_MAX)
601                 mk_interval += inc;
602             else
603                 mk_interval = UINT8_MAX;
604             PRINT_SET_VAL(mk_interval);
605             break;
606         case 3:
607             if (mk_max_speed + inc < UINT8_MAX)
608                 mk_max_speed += inc;
609             else
610                 mk_max_speed = UINT8_MAX;
611             PRINT_SET_VAL(mk_max_speed);
612             break;
613         case 4:
614             if (mk_time_to_max + inc < UINT8_MAX)
615                 mk_time_to_max += inc;
616             else
617                 mk_time_to_max = UINT8_MAX;
618             PRINT_SET_VAL(mk_time_to_max);
619             break;
620         case 5:
621             if (mk_wheel_max_speed + inc < UINT8_MAX)
622                 mk_wheel_max_speed += inc;
623             else
624                 mk_wheel_max_speed = UINT8_MAX;
625             PRINT_SET_VAL(mk_wheel_max_speed);
626             break;
627         case 6:
628             if (mk_wheel_time_to_max + inc < UINT8_MAX)
629                 mk_wheel_time_to_max += inc;
630             else
631                 mk_wheel_time_to_max = UINT8_MAX;
632             PRINT_SET_VAL(mk_wheel_time_to_max);
633             break;
634     }
635 }
636
637 static void mousekey_param_dec(uint8_t param, uint8_t dec)
638 {
639     switch (param) {
640         case 1:
641             if (mk_delay > dec)
642                 mk_delay -= dec;
643             else
644                 mk_delay = 0;
645             PRINT_SET_VAL(mk_delay);
646             break;
647         case 2:
648             if (mk_interval > dec)
649                 mk_interval -= dec;
650             else
651                 mk_interval = 0;
652             PRINT_SET_VAL(mk_interval);
653             break;
654         case 3:
655             if (mk_max_speed > dec)
656                 mk_max_speed -= dec;
657             else
658                 mk_max_speed = 0;
659             PRINT_SET_VAL(mk_max_speed);
660             break;
661         case 4:
662             if (mk_time_to_max > dec)
663                 mk_time_to_max -= dec;
664             else
665                 mk_time_to_max = 0;
666             PRINT_SET_VAL(mk_time_to_max);
667             break;
668         case 5:
669             if (mk_wheel_max_speed > dec)
670                 mk_wheel_max_speed -= dec;
671             else
672                 mk_wheel_max_speed = 0;
673             PRINT_SET_VAL(mk_wheel_max_speed);
674             break;
675         case 6:
676             if (mk_wheel_time_to_max > dec)
677                 mk_wheel_time_to_max -= dec;
678             else
679                 mk_wheel_time_to_max = 0;
680             PRINT_SET_VAL(mk_wheel_time_to_max);
681             break;
682     }
683 }
684
685 static void mousekey_console_help(void)
686 {
687     print("\n\t- Mousekey -\n"
688           "ESC/q:       quit\n"
689           "1:   delay(*10ms)\n"
690           "2:   interval(ms)\n"
691           "3:   max_speed\n"
692           "4:   time_to_max\n"
693           "5:   wheel_max_speed\n"
694           "6:   wheel_time_to_max\n"
695           "\n"
696           "p:   print values\n"
697           "d:   set defaults\n"
698           "up:  +1\n"
699           "down:        -1\n"
700           "pgup:        +10\n"
701           "pgdown:      -10\n"
702           "\n"
703           "speed = delta * max_speed * (repeat / time_to_max)\n");
704     xprintf("where delta: cursor=%d, wheel=%d\n"
705             "See http://en.wikipedia.org/wiki/Mouse_keys\n", MOUSEKEY_MOVE_DELTA,  MOUSEKEY_WHEEL_DELTA);
706 }
707
708 static bool mousekey_console(uint8_t code)
709 {
710     switch (code) {
711         case KC_H:
712         case KC_SLASH: /* ? */
713             mousekey_console_help();
714             break;
715         case KC_Q:
716         case KC_ESC:
717             if (mousekey_param) {
718                 mousekey_param = 0;
719             } else {
720                 print("C> ");
721                 command_state = CONSOLE;
722                 return false;
723             }
724             break;
725         case KC_P:
726             mousekey_param_print();
727             break;
728         case KC_1:
729         case KC_2:
730         case KC_3:
731         case KC_4:
732         case KC_5:
733         case KC_6:
734             mousekey_param = numkey2num(code);
735             break;
736         case KC_UP:
737             mousekey_param_inc(mousekey_param, 1);
738             break;
739         case KC_DOWN:
740             mousekey_param_dec(mousekey_param, 1);
741             break;
742         case KC_PGUP:
743             mousekey_param_inc(mousekey_param, 10);
744             break;
745         case KC_PGDN:
746             mousekey_param_dec(mousekey_param, 10);
747             break;
748         case KC_D:
749             mk_delay = MOUSEKEY_DELAY/10;
750             mk_interval = MOUSEKEY_INTERVAL;
751             mk_max_speed = MOUSEKEY_MAX_SPEED;
752             mk_time_to_max = MOUSEKEY_TIME_TO_MAX;
753             mk_wheel_max_speed = MOUSEKEY_WHEEL_MAX_SPEED;
754             mk_wheel_time_to_max = MOUSEKEY_WHEEL_TIME_TO_MAX;
755             print("set default\n");
756             break;
757         default:
758             print("?");
759             return false;
760     }
761     if (mousekey_param) {
762         xprintf("M%d> ", mousekey_param);
763     } else {
764         print("M>" );
765     }
766     return true;
767 }
768 #endif
769
770
771 /***********************************************************
772  * Utilities
773  ***********************************************************/
774 uint8_t numkey2num(uint8_t code)
775 {
776     switch (code) {
777         case KC_1: return 1;
778         case KC_2: return 2;
779         case KC_3: return 3;
780         case KC_4: return 4;
781         case KC_5: return 5;
782         case KC_6: return 6;
783         case KC_7: return 7;
784         case KC_8: return 8;
785         case KC_9: return 9;
786         case KC_0: return 0;
787     }
788     return 0;
789 }
790
791 static void switch_default_layer(uint8_t layer)
792 {
793     xprintf("L%d\n", layer);
794     default_layer_set(1UL<<layer);
795     clear_keyboard();
796 }