aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/xd84/xd84.c
diff options
context:
space:
mode:
authorzvecr <git@zvecr.com>2019-02-19 00:48:52 +0000
committerDrashna Jaelre <drashna@live.com>2019-02-18 16:48:52 -0800
commit9a64c6b82ef7fc46e35f7d8c35eeccf3961ba0bf (patch)
treeeb2b6f74648a3a9a2435f5f6c642599c0d843910 /keyboards/xd84/xd84.c
parent030faf951cb99840394c56803958f249383e9362 (diff)
downloadfirmware-9a64c6b82ef7fc46e35f7d8c35eeccf3961ba0bf.tar.gz
firmware-9a64c6b82ef7fc46e35f7d8c35eeccf3961ba0bf.tar.bz2
firmware-9a64c6b82ef7fc46e35f7d8c35eeccf3961ba0bf.zip
[Keyboard] XD84 fixes for caps lock led, backlight and firmware size (#5178)
* Enable backlight * Enable Link Time Optimization * Enable caps lock led
Diffstat (limited to 'keyboards/xd84/xd84.c')
-rw-r--r--keyboards/xd84/xd84.c29
1 files changed, 9 insertions, 20 deletions
diff --git a/keyboards/xd84/xd84.c b/keyboards/xd84/xd84.c
index f7048f325..eaf531421 100644
--- a/keyboards/xd84/xd84.c
+++ b/keyboards/xd84/xd84.c
@@ -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);
}