diff options
Diffstat (limited to 'tmk_core/common')
-rw-r--r-- | tmk_core/common/led.h | 4 | ||||
-rw-r--r-- | tmk_core/common/matrix.h | 7 |
2 files changed, 7 insertions, 4 deletions
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index 9dc898780..61c971c10 100644 --- a/tmk_core/common/led.h +++ b/tmk_core/common/led.h @@ -34,10 +34,6 @@ extern "C" { void led_set(uint8_t usb_led); -/* keyboard-specific LED functionality */ -void led_set_kb(uint8_t usb_led); - - void led_init_ports(void); #ifdef __cplusplus diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index 5f380aaab..5f2f831b4 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h @@ -76,6 +76,13 @@ void matrix_power_down(void); /* executes code for Quantum */ void matrix_init_quantum(void); void matrix_scan_quantum(void); + +void matrix_init_kb(void); +void matrix_scan_kb(void); + +void matrix_init_user(void); +void matrix_scan_user(void); + #ifdef __cplusplus } #endif |