aboutsummaryrefslogtreecommitdiff
path: root/keyboards/pearl/pearl.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/pearl/pearl.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/pearl/pearl.c')
-rw-r--r--keyboards/pearl/pearl.c31
1 files changed, 12 insertions, 19 deletions
diff --git a/keyboards/pearl/pearl.c b/keyboards/pearl/pearl.c
index 093b5fdd9..cebbc9fcb 100644
--- a/keyboards/pearl/pearl.c
+++ b/keyboards/pearl/pearl.c
@@ -17,32 +17,25 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18#include "pearl.h" 18#include "pearl.h"
19 19
20void backlight_init_ports(void) { 20void keyboard_pre_init_kb(void) {
21 // initialize pins D0, D1, D4 and D6 as output 21 led_init_ports();
22 keyboard_pre_init_user();
23}
24
25void led_init_ports(void) {
22 setPinOutput(D0); 26 setPinOutput(D0);
23 setPinOutput(D1); 27 setPinOutput(D1);
24 setPinOutput(D4);
25 setPinOutput(D6); 28 setPinOutput(D6);
26
27 // turn backlight LEDs on
28 writePinHigh(D0); 29 writePinHigh(D0);
29 writePinHigh(D1); 30 writePinHigh(D1);
30 writePinHigh(D4);
31 writePinHigh(D6); 31 writePinHigh(D6);
32} 32}
33 33
34void backlight_set(uint8_t level) { 34bool led_update_kb(led_t led_state) {
35 if (level == 0) { 35 if (led_update_user(led_state)) {
36 // turn backlight LEDs off 36 writePin(D0, !led_state.num_lock);
37 writePinLow(D0); 37 writePin(D1, !led_state.caps_lock);
38 writePinLow(D1); 38 writePin(D6, !led_state.scroll_lock);
39 writePinLow(D4);
40 writePinLow(D6);
41 } else {
42 // turn backlight LEDs on
43 writePinHigh(D0);
44 writePinHigh(D1);
45 writePinHigh(D4);
46 writePinHigh(D6);
47 } 39 }
40 return true;
48} 41}