Migrate led_update_kb
implementations to DD (#23981)
This commit is contained in:
parent
cb39df273d
commit
17498fa48a
45 changed files with 94 additions and 658 deletions
|
@ -16,6 +16,12 @@
|
|||
"mousekey": true,
|
||||
"nkro": false
|
||||
},
|
||||
"indicators": {
|
||||
"caps_lock": "A1",
|
||||
"num_lock": "A2",
|
||||
"scroll_lock": "A0",
|
||||
"on_state": 0
|
||||
},
|
||||
"matrix_pins": {
|
||||
"cols": ["A9", "A8", "B15", "B14", "B13", "B12", "B11", "B10", "B2", "B1", "B0", "A7", "A6", "A5", "A4", "A3"],
|
||||
"rows": ["B8", "B7", "B6", "B5", "B4", "B3", "A15", "A14"]
|
||||
|
|
|
@ -1,35 +0,0 @@
|
|||
/* Copyright 2020 Nidzo Tomic <tomicn8@hotmail.com>
|
||||
*
|
||||
* 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
|
||||
* the Free Software Foundation, either version 2 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#include "quantum.h"
|
||||
|
||||
void keyboard_pre_init_kb(void) {
|
||||
// Set our LED pins as output
|
||||
gpio_set_pin_output(A2);
|
||||
gpio_set_pin_output(A1);
|
||||
gpio_set_pin_output(A0);
|
||||
|
||||
keyboard_pre_init_user();
|
||||
}
|
||||
|
||||
bool led_update_kb(led_t led_state) {
|
||||
bool res = led_update_user(led_state);
|
||||
if(res) {
|
||||
gpio_write_pin(A2, !led_state.num_lock);
|
||||
gpio_write_pin(A1, !led_state.caps_lock);
|
||||
gpio_write_pin(A0, !led_state.scroll_lock);
|
||||
}
|
||||
return res;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue