config edit for caps indicator (#3016)

* Capslock indicator add

* edit

* name correction

* led_set_user(usb_led); delete

* config edit for caps indicator

* keymap.c fix

* led.h include
This commit is contained in:
Barry Huang 2018-05-23 23:27:52 +08:00 committed by Drashna Jaelre
parent 575b2a66df
commit 2ec0e01430
1 changed files with 27 additions and 6 deletions

View File

@ -1,12 +1,33 @@
#include "pk60.h"
#include "led.h"
void matrix_init_kb (void) {
matrix_init_user();
led_init_ports();
}
void matrix_scan_kb(void) {
matrix_scan_user();
};
void led_init_ports(void) {
DDRF |= (1 << 4);
PORTF |= (1 << 4);
}
void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
PORTF |= (1<<4);
} else {
PORTF &= ~(1<<4);
}
led_set_user(usb_led);
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
PORTF |= (1 << 4);
} else {
PORTF &= ~(1 << 4);
}
led_set_user(usb_led);
}