2 Copyright 2011 Jun Wako <wakojun@gmail.com>
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.
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.
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/>.
19 #include <util/delay.h>
27 #include "bootloader.h"
29 #ifdef MOUSEKEY_ENABLE
34 # include "usb_keyboard.h"
35 # ifdef EXTRAKEY_ENABLE
36 # include "usb_extra.h"
45 static bool command_common(uint8_t code);
46 static void command_common_help(void);
47 static bool command_console(uint8_t code);
48 static void command_console_help(void);
49 #ifdef MOUSEKEY_ENABLE
50 static bool mousekey_console(uint8_t code);
51 static void mousekey_console_help(void);
54 static uint8_t numkey2num(uint8_t code);
55 static void switch_layer(uint8_t layer);
56 static void clear_keyboard(void);
59 typedef enum { ONESHOT, CONSOLE, MOUSEKEY } cmdstate_t;
60 static cmdstate_t state = ONESHOT;
63 bool command_proc(uint8_t code)
69 return (command_extra(code) || command_common(code));
71 command_console(code);
73 #ifdef MOUSEKEY_ENABLE
75 mousekey_console(code);
85 /* This allows to define extra commands. return false when not processed. */
86 bool command_extra(uint8_t code) __attribute__ ((weak));
87 bool command_extra(uint8_t code)
93 /***********************************************************
95 ***********************************************************/
96 static void command_common_help(void)
99 print("\n\n----- Command Help -----\n");
100 print("c: enter console mode\n");
101 print("d: toggle debug enable\n");
102 print("x: toggle matrix debug\n");
103 print("k: toggle keyboard debug\n");
104 print("m: toggle mouse debug\n");
105 print("p: toggle print enable\n");
106 print("v: print device version & info\n");
107 print("t: print timer count\n");
108 print("s: print status\n");
110 print("n: toggle NKRO\n");
112 print("0/F10: switch to Layer0 \n");
113 print("1/F1: switch to Layer1 \n");
114 print("2/F2: switch to Layer2 \n");
115 print("3/F3: switch to Layer3 \n");
116 print("4/F4: switch to Layer4 \n");
117 print("PScr: power down/remote wake-up\n");
118 print("Caps: Lock Keyboard(Child Proof)\n");
119 print("Paus: jump to bootloader\n");
122 static bool command_common(uint8_t code)
124 static host_driver_t *host_driver = 0;
127 if (host_get_driver()) {
128 host_driver = host_get_driver();
132 host_set_driver(host_driver);
133 print("Unlocked.\n");
137 case KC_SLASH: /* ? */
138 command_common_help();
142 debug_matrix = false;
143 debug_keyboard = false;
145 debug_enable = false;
146 command_console_help();
147 print("\nEnter Console Mode\n");
153 print("\n\nJump to bootloader... ");
155 bootloader_jump(); // not return
156 print("not supported.\n");
160 print("\nDEBUG: disabled.\n");
161 debug_matrix = false;
162 debug_keyboard = false;
164 debug_enable = false;
166 print("\nDEBUG: enabled.\n");
170 case KC_X: // debug matrix toggle
171 debug_matrix = !debug_matrix;
173 print("\nDEBUG: matrix enabled.\n");
176 print("\nDEBUG: matrix disabled.\n");
179 case KC_K: // debug keyboard toggle
180 debug_keyboard = !debug_keyboard;
181 if (debug_keyboard) {
182 print("\nDEBUG: keyboard enabled.\n");
185 print("\nDEBUG: keyboard disabled.\n");
188 case KC_M: // debug mouse toggle
189 debug_mouse = !debug_mouse;
191 print("\nDEBUG: mouse enabled.\n");
194 print("\nDEBUG: mouse disabled.\n");
197 case KC_V: // print version & information
198 print("\n\n----- Version -----\n");
199 print(STR(DESCRIPTION) "\n");
200 print(STR(MANUFACTURER) "(" STR(VENDOR_ID) ")/");
201 print(STR(PRODUCT) "(" STR(PRODUCT_ID) ") ");
202 print("VERSION: " STR(DEVICE_VER) "\n");
204 case KC_T: // print timer
205 print_val_hex32(timer_count);
207 case KC_P: // print toggle
209 print("print disabled.\n");
210 print_enable = false;
213 print("print enabled.\n");
217 print("\n\n----- Status -----\n");
218 print_val_hex8(host_keyboard_leds());
220 print_val_hex8(UDCON);
221 print_val_hex8(UDIEN);
222 print_val_hex8(UDINT);
223 print_val_hex8(usb_keyboard_leds);
224 print_val_hex8(usb_keyboard_protocol);
225 print_val_hex8(usb_keyboard_idle_config);
226 print_val_hex8(usb_keyboard_idle_count);
231 print_val_hex8(usbSofCount);
237 keyboard_nkro = !keyboard_nkro;
239 print("NKRO: enabled\n");
241 print("NKRO: disabled\n");
244 #ifdef EXTRAKEY_ENABLE
246 // TODO: Power key should take this feature? otherwise any key during suspend.
248 if (suspend && remote_wakeup) {
251 host_system_send(SYSTEM_POWER_DOWN);
256 host_system_send(SYSTEM_POWER_DOWN);
291 /***********************************************************
293 ***********************************************************/
294 static void command_console_help(void)
297 print("\n\n----- Console Help -----\n");
298 print("ESC/q: quit\n");
299 #ifdef MOUSEKEY_ENABLE
300 print("m: mousekey\n");
304 static bool command_console(uint8_t code)
308 case KC_SLASH: /* ? */
309 command_console_help();
313 print("\nQuit Console Mode\n");
316 #ifdef MOUSEKEY_ENABLE
318 mousekey_console_help();
319 print("\nEnter Mousekey Console\n");
333 #ifdef MOUSEKEY_ENABLE
334 /***********************************************************
336 ***********************************************************/
337 static uint8_t mousekey_param = 0;
339 static void mousekey_param_print(void)
341 print("\n\n----- Mousekey Parameters -----\n");
342 print("1: mk_delay(*10ms): "); pdec(mk_delay); print("\n");
343 print("2: mk_interval(ms): "); pdec(mk_interval); print("\n");
344 print("3: mk_max_speed: "); pdec(mk_max_speed); print("\n");
345 print("4: mk_time_to_max: "); pdec(mk_time_to_max); print("\n");
346 print("5: mk_wheel_max_speed: "); pdec(mk_wheel_max_speed); print("\n");
347 print("6: mk_wheel_time_to_max: "); pdec(mk_wheel_time_to_max); print("\n");
350 #define PRINT_SET_VAL(v) print(#v " = "); print_dec(v); print("\n");
351 static void mousekey_param_inc(uint8_t param, uint8_t inc)
355 if (mk_delay + inc < UINT8_MAX)
358 mk_delay = UINT8_MAX;
359 PRINT_SET_VAL(mk_delay);
362 if (mk_interval + inc < UINT8_MAX)
365 mk_interval = UINT8_MAX;
366 PRINT_SET_VAL(mk_interval);
369 if (mk_max_speed + inc < UINT8_MAX)
372 mk_max_speed = UINT8_MAX;
373 PRINT_SET_VAL(mk_max_speed);
376 if (mk_time_to_max + inc < UINT8_MAX)
377 mk_time_to_max += inc;
379 mk_time_to_max = UINT8_MAX;
380 PRINT_SET_VAL(mk_time_to_max);
383 if (mk_wheel_max_speed + inc < UINT8_MAX)
384 mk_wheel_max_speed += inc;
386 mk_wheel_max_speed = UINT8_MAX;
387 PRINT_SET_VAL(mk_wheel_max_speed);
390 if (mk_wheel_time_to_max + inc < UINT8_MAX)
391 mk_wheel_time_to_max += inc;
393 mk_wheel_time_to_max = UINT8_MAX;
394 PRINT_SET_VAL(mk_wheel_time_to_max);
399 static void mousekey_param_dec(uint8_t param, uint8_t dec)
407 PRINT_SET_VAL(mk_delay);
410 if (mk_interval > dec)
414 PRINT_SET_VAL(mk_interval);
417 if (mk_max_speed > dec)
421 PRINT_SET_VAL(mk_max_speed);
424 if (mk_time_to_max > dec)
425 mk_time_to_max -= dec;
428 PRINT_SET_VAL(mk_time_to_max);
431 if (mk_wheel_max_speed > dec)
432 mk_wheel_max_speed -= dec;
434 mk_wheel_max_speed = 0;
435 PRINT_SET_VAL(mk_wheel_max_speed);
438 if (mk_wheel_time_to_max > dec)
439 mk_wheel_time_to_max -= dec;
441 mk_wheel_time_to_max = 0;
442 PRINT_SET_VAL(mk_wheel_time_to_max);
447 static void mousekey_console_help(void)
449 print("\n\n----- Mousekey Parameters Help -----\n");
450 print("ESC/q: quit\n");
451 print("1: select mk_delay(*10ms)\n");
452 print("2: select mk_interval(ms)\n");
453 print("3: select mk_max_speed\n");
454 print("4: select mk_time_to_max\n");
455 print("5: select mk_wheel_max_speed\n");
456 print("6: select mk_wheel_time_to_max\n");
457 print("p: print prameters\n");
458 print("d: set default values\n");
459 print("up: increase prameters(+1)\n");
460 print("down: decrease prameters(-1)\n");
461 print("pgup: increase prameters(+10)\n");
462 print("pgdown: decrease prameters(-10)\n");
463 print("\nspeed = delta * max_speed * (repeat / time_to_max)\n");
464 print("where delta: cursor="); pdec(MOUSEKEY_MOVE_DELTA);
465 print(", wheel="); pdec(MOUSEKEY_WHEEL_DELTA); print("\n");
466 print("See http://en.wikipedia.org/wiki/Mouse_keys\n");
469 static bool mousekey_console(uint8_t code)
473 case KC_SLASH: /* ? */
474 mousekey_console_help();
479 print("\nQuit Mousekey Console\n");
484 mousekey_param_print();
496 mousekey_param = numkey2num(code);
497 print("selected parameter: "); pdec(mousekey_param); print("\n");
500 mousekey_param_inc(mousekey_param, 1);
503 mousekey_param_dec(mousekey_param, 1);
506 mousekey_param_inc(mousekey_param, 10);
509 mousekey_param_dec(mousekey_param, 10);
512 mk_delay = MOUSEKEY_DELAY/10;
513 mk_interval = MOUSEKEY_INTERVAL;
514 mk_max_speed = MOUSEKEY_MAX_SPEED;
515 mk_time_to_max = MOUSEKEY_TIME_TO_MAX;
516 mk_wheel_max_speed = MOUSEKEY_WHEEL_MAX_SPEED;
517 mk_wheel_time_to_max = MOUSEKEY_WHEEL_TIME_TO_MAX;
518 print("set default values.\n");
524 print("M"); pdec(mousekey_param); print("> ");
530 /***********************************************************
532 ***********************************************************/
533 static uint8_t numkey2num(uint8_t code)
550 static void switch_layer(uint8_t layer)
552 print_val_hex8(current_layer);
553 print_val_hex8(default_layer);
554 current_layer = layer;
555 default_layer = layer;
556 print("switch to "); print_val_hex8(layer);
559 static void clear_keyboard(void)
563 host_send_keyboard_report();
566 host_consumer_send(0);
568 #ifdef MOUSEKEY_ENABLE