Remove deprecated led_set_kb (#19273)
* Remove led_set_kb maintaining existing led_set_user behaviour * Also call led_set_user
This commit is contained in:
@@ -40,7 +40,11 @@ void backlight_set(uint8_t level) {
|
||||
level & BACKLIGHT_RGBBLUE ? (PORTD |= 0b00010000) : (PORTD &= ~0b00010000);
|
||||
}
|
||||
|
||||
void led_set_kb(uint8_t usb_led) {
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool res = led_update_user(led_state);
|
||||
if(res) {
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
@@ -97,17 +97,21 @@ void backlight_set(uint8_t level) {
|
||||
}
|
||||
|
||||
// Port from backlight_update_state
|
||||
void led_set_kb(uint8_t usb_led) {
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool res = led_update_user(led_state);
|
||||
if(res) {
|
||||
bool status[7] = {
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK),
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK),
|
||||
backlight_os_state & (1<<USB_LED_NUM_LOCK),
|
||||
backlight_layer_state & (1<<1),
|
||||
backlight_layer_state & (1<<2),
|
||||
backlight_layer_state & (1<<3),
|
||||
backlight_layer_state & (1<<4)
|
||||
};
|
||||
indicator_leds_set(status);
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK),
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK),
|
||||
backlight_os_state & (1<<USB_LED_NUM_LOCK),
|
||||
backlight_layer_state & (1<<1),
|
||||
backlight_layer_state & (1<<2),
|
||||
backlight_layer_state & (1<<3),
|
||||
backlight_layer_state & (1<<4)
|
||||
};
|
||||
indicator_leds_set(status);
|
||||
backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
@@ -100,19 +100,23 @@ void backlight_set(uint8_t level) {
|
||||
}
|
||||
|
||||
// // Port from backlight_update_state
|
||||
// void led_set_kb(uint8_t usb_led) {
|
||||
// bool status[7] = {
|
||||
// backlight_os_state & (1<<USB_LED_CAPS_LOCK),
|
||||
// backlight_os_state & (1<<USB_LED_SCROLL_LOCK),
|
||||
// backlight_os_state & (1<<USB_LED_NUM_LOCK),
|
||||
// backlight_layer_state & (1<<1),
|
||||
// backlight_layer_state & (1<<2),
|
||||
// backlight_layer_state & (1<<3),
|
||||
// backlight_layer_state & (1<<4)
|
||||
// };
|
||||
// indicator_leds_set(status);
|
||||
// backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
// backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
// bool led_update_kb(led_t led_state) {
|
||||
// bool res = led_update_user(led_state);
|
||||
// if(res) {
|
||||
// bool status[7] = {
|
||||
// backlight_os_state & (1<<USB_LED_CAPS_LOCK),
|
||||
// backlight_os_state & (1<<USB_LED_SCROLL_LOCK),
|
||||
// backlight_os_state & (1<<USB_LED_NUM_LOCK),
|
||||
// backlight_layer_state & (1<<1),
|
||||
// backlight_layer_state & (1<<2),
|
||||
// backlight_layer_state & (1<<3),
|
||||
// backlight_layer_state & (1<<4)
|
||||
// };
|
||||
// indicator_leds_set(status);
|
||||
// backlight_os_state & (1<<USB_LED_CAPS_LOCK) ? (PORTB &= ~0b00000001) : (PORTB |= 0b00000001);
|
||||
// backlight_os_state & (1<<USB_LED_SCROLL_LOCK) ? (PORTB &= ~0b00010000) : (PORTB |= 0b00010000);
|
||||
// }
|
||||
// return res;
|
||||
// }
|
||||
|
||||
// U5 Pin 1, 2, 3 connected to top left LEDs
|
||||
|
Reference in New Issue
Block a user