1
0
Fork 0

[Keyboard] XD84 fixes for caps lock led, backlight and firmware size (#5178)

* Enable backlight

* Enable Link Time Optimization

* Enable caps lock led
This commit is contained in:
zvecr 2019-02-19 00:48:52 +00:00 committed by Drashna Jaelre
parent 030faf951c
commit 9a64c6b82e
6 changed files with 24 additions and 27 deletions

View file

@ -15,29 +15,18 @@
*/
#include "xd84.h"
void matrix_init_kb(void) {
// put your keyboard start-up code here
// runs once when the firmware starts up
void keyboard_pre_init_kb(void) {
setPinOutput(B6);
matrix_init_user();
}
void matrix_scan_kb(void) {
// put your looping keyboard code here
// runs every cycle (a lot)
matrix_scan_user();
}
bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
// put your per-action keyboard code here
// runs for every action, just before processing by the firmware
return process_record_user(keycode, record);
keyboard_pre_init_user();
}
void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
writePinLow(B6);
} else {
writePinHigh(B6);
}
led_set_user(usb_led);
led_set_user(usb_led);
}