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:
Barry Huang 2018-05-25 06:28:54 +08:00 committed by Drashna Jaelre
parent 9ae6f4f927
commit 1b81c4dd2b

View File

@ -15,7 +15,7 @@ void matrix_scan_kb(void) {
};
void led_init_ports(void) {
// Set capslock LED pin as pinout
DDRF |= (1 << 4);
PORTF |= (1 << 4);
@ -24,9 +24,11 @@ void led_init_ports(void) {
void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
PORTF |= (1 << 4);
} else {
// Turn capslock on
PORTF &= ~(1 << 4);
} else {
// Turn capslock off
PORTF |= (1 << 4);
}
led_set_user(usb_led);