diff options
author | fauxpark <fauxpark@gmail.com> | 2020-01-24 14:24:10 +1100 |
---|---|---|
committer | James Young <18669334+noroadsleft@users.noreply.github.com> | 2020-01-23 19:24:10 -0800 |
commit | b56899976924043a9563c12987218abd78baf13d (patch) | |
tree | 10751dc02dd9fef177a1a4a57eda533a3f551b08 /keyboards/exent/exent.c | |
parent | fe50883c1568b1914fcadbe0c7f029c3f9fd99f4 (diff) | |
download | qmk_firmware-b56899976924043a9563c12987218abd78baf13d.tar.gz qmk_firmware-b56899976924043a9563c12987218abd78baf13d.zip |
Fix LED configuration for PS2AVRGB boards (#7989)
* Fix LED configuration for PS2AVRGB boards
* Undo backlight on state changes
Diffstat (limited to 'keyboards/exent/exent.c')
-rw-r--r-- | keyboards/exent/exent.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/keyboards/exent/exent.c b/keyboards/exent/exent.c index c6870f2c7..a935e9e67 100644 --- a/keyboards/exent/exent.c +++ b/keyboards/exent/exent.c | |||
@@ -25,16 +25,13 @@ void led_init_ports(void) { | |||
25 | setPinOutput(D0); | 25 | setPinOutput(D0); |
26 | setPinOutput(D1); | 26 | setPinOutput(D1); |
27 | setPinOutput(D6); | 27 | setPinOutput(D6); |
28 | writePinHigh(D0); | ||
29 | writePinHigh(D1); | ||
30 | writePinHigh(D6); | ||
31 | } | 28 | } |
32 | 29 | ||
33 | bool led_update_kb(led_t led_state) { | 30 | bool led_update_kb(led_t led_state) { |
34 | if (led_update_user(led_state)) { | 31 | if (led_update_user(led_state)) { |
35 | writePin(D0, !led_state.num_lock); | 32 | writePin(D0, led_state.num_lock); |
36 | writePin(D1, !led_state.caps_lock); | 33 | writePin(D1, led_state.caps_lock); |
37 | writePin(D6, !led_state.scroll_lock); | 34 | writePin(D6, led_state.scroll_lock); |
38 | } | 35 | } |
39 | return true; | 36 | return true; |
40 | } | 37 | } |