aboutsummaryrefslogtreecommitdiff
path: root/keyboards/percent/skog/skog.c
diff options
context:
space:
mode:
authorfauxpark <fauxpark@gmail.com>2020-01-19 18:00:32 +1100
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2020-01-18 23:00:32 -0800
commitf5209aa4e941c7f3a942ef4a7e256ab432ec98ce (patch)
tree29c2a0d197050ff2accb920731ddb1d022cb2a90 /keyboards/percent/skog/skog.c
parenteb5d267e637db4c2c639932b8c8176bf47dff78f (diff)
downloadqmk_firmware-f5209aa4e941c7f3a942ef4a7e256ab432ec98ce.tar.gz
qmk_firmware-f5209aa4e941c7f3a942ef4a7e256ab432ec98ce.zip
Remove custom backlight code for PS2AVRGB boards (#7775)
* Remove custom backlight code for PS2AVRGB boards * Remove custom driver setting * BACKLIGHT_BREATHING goes in config.h, not here * Don't need to include backlight.c again here either * Turn on backlight for Canoe * Disable console on a few boards due to oversize
Diffstat (limited to 'keyboards/percent/skog/skog.c')
-rw-r--r--keyboards/percent/skog/skog.c26
1 files changed, 14 insertions, 12 deletions
diff --git a/keyboards/percent/skog/skog.c b/keyboards/percent/skog/skog.c
index 1c26c550e..241833937 100644
--- a/keyboards/percent/skog/skog.c
+++ b/keyboards/percent/skog/skog.c
@@ -19,20 +19,22 @@ ps2avrGB support code by Kenneth A. (bminiex/.[ch])
19 19
20#include "skog.h" 20#include "skog.h"
21 21
22#include "backlight.h" 22void keyboard_pre_init_kb(void) {
23#include "backlight_custom.h" 23 led_init_ports();
24 24 keyboard_pre_init_user();
25#ifdef BACKLIGHT_ENABLE
26/// Overrides functions in `quantum.c`
27void backlight_init_ports(void) {
28 b_led_init_ports();
29} 25}
30 26
31void backlight_task(void) { 27void led_init_ports(void) {
32 b_led_task(); 28 setPinOutput(D1);
29 setPinOutput(D6);
30 writePinHigh(D1);
31 writePinHigh(D6);
33} 32}
34 33
35void backlight_set(uint8_t level) { 34bool led_update_kb(led_t led_state) {
36 b_led_set(level); 35 if (led_update_user(led_state)) {
36 writePin(D1, !led_state.caps_lock);
37 writePin(D6, !led_state.scroll_lock);
38 }
39 return true;
37} 40}
38#endif