2020-06-05 08:55:39 +02:00
|
|
|
/* Copyright 2019 Takuya Urakawa (dm9records.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/>.
|
|
|
|
*/
|
2023-03-29 06:54:34 +02:00
|
|
|
#include "quantum.h"
|
2020-06-05 08:55:39 +02:00
|
|
|
|
|
|
|
void matrix_init_kb(void) {
|
2024-05-03 07:21:29 +02:00
|
|
|
gpio_set_pin_output(C4);
|
|
|
|
gpio_set_pin_output(C5);
|
2020-06-05 08:55:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool led_update_kb(led_t led_state) {
|
|
|
|
bool res = led_update_user(led_state);
|
|
|
|
if(res) {
|
2024-05-03 07:21:29 +02:00
|
|
|
gpio_write_pin(C4, led_state.num_lock);
|
|
|
|
gpio_write_pin(C5, led_state.caps_lock);
|
2020-06-05 08:55:39 +02:00
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|