aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Huang <yj7272098@hotmail.com>2018-05-23 23:27:52 +0800
committerDrashna Jaelre <drashna@live.com>2018-05-23 08:27:52 -0700
commit2ec0e014302fbdcd61047e90c131d0e1302f2e17 (patch)
treea51153d3c76c2aa53a5edf17da14a3f8fa5225e0
parent575b2a66df2d75fa6cf689912b0c1a0816f3fe66 (diff)
downloadqmk_firmware-2ec0e014302fbdcd61047e90c131d0e1302f2e17.tar.gz
qmk_firmware-2ec0e014302fbdcd61047e90c131d0e1302f2e17.zip
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
-rw-r--r--keyboards/pk60/pk60.c33
1 files changed, 27 insertions, 6 deletions
diff --git a/keyboards/pk60/pk60.c b/keyboards/pk60/pk60.c
index 9cf2e1578..f1d9dd641 100644
--- a/keyboards/pk60/pk60.c
+++ b/keyboards/pk60/pk60.c
@@ -1,12 +1,33 @@
1#include "pk60.h" 1#include "pk60.h"
2#include "led.h"
3
4void matrix_init_kb (void) {
5
6 matrix_init_user();
7 led_init_ports();
8
9}
10
11void matrix_scan_kb(void) {
12
13 matrix_scan_user();
14
15};
16
17void led_init_ports(void) {
18
19 DDRF |= (1 << 4);
20 PORTF |= (1 << 4);
21
22}
2 23
3void led_set_kb(uint8_t usb_led) { 24void led_set_kb(uint8_t usb_led) {
4 25
5 if (usb_led & (1<<USB_LED_CAPS_LOCK)) { 26 if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
6 PORTF |= (1<<4); 27 PORTF |= (1 << 4);
7 } else { 28 } else {
8 PORTF &= ~(1<<4); 29 PORTF &= ~(1 << 4);
9 } 30 }
10 led_set_user(usb_led); 31 led_set_user(usb_led);
11 32
12} \ No newline at end of file 33} \ No newline at end of file