2018-09-29 21:44:54 +02:00
|
|
|
/* Copyright 2018 Ryan "Izzy" Bales
|
|
|
|
*
|
|
|
|
* 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 "yd68.h"
|
|
|
|
|
2020-11-17 18:06:30 +01:00
|
|
|
void keyboard_pre_init_kb(void) {
|
2018-09-29 21:44:54 +02:00
|
|
|
//Backlight LEDs Output Low
|
2020-11-17 18:06:30 +01:00
|
|
|
setPinOutput(D6);
|
|
|
|
writePinLow(D6);
|
2018-09-29 21:44:54 +02:00
|
|
|
|
|
|
|
//RGB power output low
|
2020-11-17 18:06:30 +01:00
|
|
|
setPinOutput(E2);
|
|
|
|
writePinLow(E2);
|
2018-09-29 21:44:54 +02:00
|
|
|
|
|
|
|
//Bluetooth power output high
|
2020-11-17 18:06:30 +01:00
|
|
|
setPinOutput(B2);
|
|
|
|
writePinLow(B2);
|
2018-09-29 21:44:54 +02:00
|
|
|
|
|
|
|
//RGB data output low
|
2020-11-17 18:06:30 +01:00
|
|
|
setPinOutput(B3);
|
|
|
|
writePinLow(B3);
|
2018-09-29 21:44:54 +02:00
|
|
|
|
2020-11-17 18:06:30 +01:00
|
|
|
keyboard_pre_init_user();
|
2018-09-29 21:44:54 +02:00
|
|
|
}
|