Capslock indicator add (#3007)

* Capslock indicator add

* edit

* name correction

* led_set_user(usb_led); delete
master
Barry Huang 2018-05-21 01:28:33 +08:00 committed by Drashna Jaelre
parent 068b80383f
commit f698bbcd65
1 changed files with 11 additions and 0 deletions

View File

@ -1 +1,12 @@
#include "pk60.h"
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);
}