]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
Add child proof keyboard locking feature!
authortmk <nobody@nowhere>
Wed, 17 Oct 2012 15:10:20 +0000 (00:10 +0900)
committertmk <nobody@nowhere>
Wed, 17 Oct 2012 15:59:59 +0000 (00:59 +0900)
Fix: add wait for Power down command
Add ifdef of MOUSEKEY_ENABLE

common/command.c
common/keyboard.c
common/matrix.h

index bbc45f45a330d268dfc52138e7ec4f35bde64d51..8e2e21a7079f6e0be60c2f9c5d0e2867e7795c0f 100644 (file)
@@ -46,10 +46,12 @@ static bool command_common(uint8_t code);
 static void command_common_help(void);
 static bool command_console(uint8_t code);
 static void command_console_help(void);
+#ifdef MOUSEKEY_ENABLE
 static bool mousekey_console(uint8_t code);
 static void mousekey_console_help(void);
+#endif
 
-static uint8_t kc2int(uint8_t code);
+static uint8_t numkey2num(uint8_t code);
 static void switch_layer(uint8_t layer);
 static void clear_keyboard(void);
 
@@ -68,9 +70,11 @@ bool command_proc(uint8_t code)
         case CONSOLE:
             command_console(code);
             break;
+#ifdef MOUSEKEY_ENABLE
         case MOUSEKEY:
             mousekey_console(code);
             break;
+#endif
         default:
             state = ONESHOT;
             return false;
@@ -111,12 +115,24 @@ static void command_common_help(void)
     print("3/F3:       switch to Layer3 \n");
     print("4/F4:       switch to Layer4 \n");
     print("PScr:       power down/remote wake-up\n");
+    print("Caps:       Lock Keyboard(Child Proof)\n");
     print("Paus:       jump to bootloader\n");
 }
 
 static bool command_common(uint8_t code)
 {
+    static host_driver_t *host_driver = 0;
     switch (code) {
+        case KC_CAPSLOCK:
+            if (host_get_driver()) {
+                host_driver = host_get_driver();
+                host_set_driver(0);
+                print("Locked.\n");
+            } else {
+                host_set_driver(host_driver);
+                print("Unlocked.\n");
+            }
+            break;
         case KC_H:
         case KC_SLASH: /* ? */
             command_common_help();
@@ -241,6 +257,7 @@ static bool command_common(uint8_t code)
             }
 #else
             host_system_send(SYSTEM_POWER_DOWN);
+            _delay_ms(100);
             host_system_send(0);
             _delay_ms(500);
 #endif
@@ -478,7 +495,7 @@ static bool mousekey_console(uint8_t code)
         case KC_8:
         case KC_9:
         case KC_0:
-            mousekey_param = kc2int(code);
+            mousekey_param = numkey2num(code);
             print("selected parameter: "); pdec(mousekey_param); print("\n");
             break;
         case KC_UP:
@@ -515,7 +532,7 @@ static bool mousekey_console(uint8_t code)
 /***********************************************************
  * Utilities
  ***********************************************************/
-static uint8_t kc2int(uint8_t code)
+static uint8_t numkey2num(uint8_t code)
 {
     switch (code) {
         case KC_1: return 1;
index d7ced430e052126d0e1c3841908bf2180f606c8b..e973c46d5b0c7fe600895aa3d3545ff87fcd1c00 100644 (file)
@@ -563,7 +563,7 @@ void keyboard_task(void)
         matrix_row = matrix_get_row(r);
         matrix_change = matrix_row ^ matrix_prev[r];
         if (matrix_change) {
-            matrix_debug();
+            if (debug_matrix) matrix_print();
 
             for (int c = 0; c < MATRIX_COLS; c++) {
                 if (matrix_change & (1<<c)) {
index 91231e765eba67b1c85bcae8ec8df25b65d90d02..b3332d5ff91ca3132cc5524a4b6485df568d5b0c 100644 (file)
@@ -54,7 +54,7 @@ matrix_row_t  matrix_get_row(uint8_t row);
 /* count keys pressed */
 uint8_t matrix_key_count(void);
 /* print matrix for debug */
-void matrix_debug(void);
+void matrix_print(void);
 
 
 #endif