aboutsummaryrefslogtreecommitdiff
path: root/keyboards/pearl/pearl.c
diff options
context:
space:
mode:
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}