]> git.donarmstrong.com Git - tmk_firmware.git/blobdiff - common/action.c
Remove test_func.
[tmk_firmware.git] / common / action.c
index 815931548125726cff05cf5c709a47c4315373d3..db31613bf625740960d6086a725fbeadf45dc3d2 100644 (file)
 
 static void process(keyrecord_t *record);
 
-void test_func(keyevent_t event, uint8_t opt)
-{
-    if (event.pressed) {
-        debug("test_func:pressed: "); debug_hex(opt); debug("\n");
-    } else {
-        debug("test_func:released: "); debug_hex(opt); debug("\n");
-    }
-}
-
+// TODO
 /* layer */
 uint8_t default_layer = 0;
 uint8_t current_layer = 0;
@@ -570,7 +562,6 @@ static void process(keyrecord_t *record)
             break;
         case ACT_FUNCTION:
             action_call_function(event, action.func.id);
-            //test_func(event, action.func.opt);
             break;
         default:
             break;