1
0
Fork 0

[Keyboard] Cospad refactor (#7957)

* Cospad refactor

* Add num lock indicator code

* Add led_init_ports()

* Revert change to matrix position blanks

* Define BACKLIGHT_ON_STATE explicitly, in anticipation of PR6749
This commit is contained in:
fauxpark 2020-01-22 13:21:47 +11:00 committed by Drashna Jaelre
parent 8e500c3670
commit ba264c69c2
7 changed files with 442 additions and 274 deletions

View file

@ -1,5 +1,4 @@
/* Copyright 2019
/* Copyright 2020
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@ -16,18 +15,18 @@
*/
#include "cospad.h"
#ifdef BACKLIGHT_ENABLE
void backlight_init_ports(void) {
setPinOutput(F7);
void keyboard_pre_init_kb(void) {
led_init_ports();
keyboard_pre_init_user();
}
void backlight_set(uint8_t level) {
writePin(F7, !!level);
void led_init_ports(void) {
setPinOutput(B2);
}
void backlight_task(void) {
// do nothing - as default implementation of software PWM does not work
bool led_update_kb(led_t led_state) {
if (led_update_user(led_state)) {
writePin(B2, !led_state.num_lock);
}
return true;
}
#endif //BACKLIGHT_ENABLE