forked from mirrors/qmk_firmware
pk60.c fix for capslock indicator (#3032)
* Capslock indicator add * edit * name correction * led_set_user(usb_led); delete * config edit for caps indicator * keymap.c fix * led.h include * pk60.c fix for capslock indicator
This commit is contained in:
parent
9ae6f4f927
commit
1b81c4dd2b
1 changed files with 5 additions and 3 deletions
|
@ -15,7 +15,7 @@ void matrix_scan_kb(void) {
|
||||||
};
|
};
|
||||||
|
|
||||||
void led_init_ports(void) {
|
void led_init_ports(void) {
|
||||||
|
// Set capslock LED pin as pinout
|
||||||
DDRF |= (1 << 4);
|
DDRF |= (1 << 4);
|
||||||
PORTF |= (1 << 4);
|
PORTF |= (1 << 4);
|
||||||
|
|
||||||
|
@ -24,9 +24,11 @@ void led_init_ports(void) {
|
||||||
void led_set_kb(uint8_t usb_led) {
|
void led_set_kb(uint8_t usb_led) {
|
||||||
|
|
||||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||||
PORTF |= (1 << 4);
|
// Turn capslock on
|
||||||
} else {
|
|
||||||
PORTF &= ~(1 << 4);
|
PORTF &= ~(1 << 4);
|
||||||
|
} else {
|
||||||
|
// Turn capslock off
|
||||||
|
PORTF |= (1 << 4);
|
||||||
}
|
}
|
||||||
led_set_user(usb_led);
|
led_set_user(usb_led);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue