2023-03-23 05:38:35 +01:00
|
|
|
/* Copyright 2023 jotix <jujodeve@gmail.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"
|
2019-02-21 18:08:28 +01:00
|
|
|
|
2023-01-20 17:21:17 +01:00
|
|
|
void keyboard_pre_init_kb(void) {
|
2019-11-30 13:54:57 +01:00
|
|
|
setPinOutput(JOTANCK_LED1);
|
|
|
|
setPinOutput(JOTANCK_LED2);
|
|
|
|
|
|
|
|
keyboard_pre_init_user();
|
2019-02-21 18:08:28 +01:00
|
|
|
}
|