led_update_kb -> led_update_ports where appropriate (#18716)
Following #14452, less boilerplate is needed to customize indicator led control.
This commit is contained in:
parent
ad8630bd72
commit
2ee573fc5f
13 changed files with 49 additions and 101 deletions
|
@ -103,12 +103,8 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
|
|||
}
|
||||
|
||||
// Use Bit-C LED to show NUM LOCK status
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool res = led_update_user(led_state);
|
||||
if (res) {
|
||||
set_bitc_LED(led_state.num_lock ? LED_DIM : LED_OFF);
|
||||
}
|
||||
return res;
|
||||
void led_update_ports(led_t led_state) {
|
||||
set_bitc_LED(led_state.num_lock ? LED_DIM : LED_OFF);
|
||||
}
|
||||
|
||||
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue