diff options
Diffstat (limited to 'keyboards/bear_face')
-rw-r--r-- | keyboards/bear_face/bear_face.c | 18 | ||||
-rw-r--r-- | keyboards/bear_face/bear_face.h | 26 | ||||
-rw-r--r-- | keyboards/bear_face/config.h | 8 | ||||
-rw-r--r-- | keyboards/bear_face/info.json | 5 | ||||
-rw-r--r-- | keyboards/bear_face/v1/v1.c | 2 | ||||
-rw-r--r-- | keyboards/bear_face/v2/v2.c | 2 |
6 files changed, 7 insertions, 54 deletions
diff --git a/keyboards/bear_face/bear_face.c b/keyboards/bear_face/bear_face.c deleted file mode 100644 index 30aa5140d4..0000000000 --- a/keyboards/bear_face/bear_face.c +++ /dev/null @@ -1,18 +0,0 @@ -/* -Copyright 2020 chemicalwill <https://github.com/chemicalwill> - -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 "bear_face.h" diff --git a/keyboards/bear_face/bear_face.h b/keyboards/bear_face/bear_face.h deleted file mode 100644 index c63b2bd012..0000000000 --- a/keyboards/bear_face/bear_face.h +++ /dev/null @@ -1,26 +0,0 @@ -/* -Copyright 2020 chemicalwill <https://github.com/chemicalwill> - -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/>. -*/ - -#pragma once - -#include "quantum.h" - -#if defined(KEYBOARD_bear_face_v1) -# include "v1.h" -#elif defined(KEYBOARD_bear_face_v2) -# include "v2.h" -#endif diff --git a/keyboards/bear_face/config.h b/keyboards/bear_face/config.h index 82349297dd..2f3742c5d0 100644 --- a/keyboards/bear_face/config.h +++ b/keyboards/bear_face/config.h @@ -17,14 +17,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #pragma once - -/* bear_face matrix pinout */ -#define MATRIX_ROW_PINS { F5, F6, F4, F1, B0, B6 } -#define MATRIX_COL_PINS { B5, C7, C6, F0, E6, B7, D0, D1, D2, D3, D5, D4, D6, D7, B4 } - -/* COL2ROW or ROW2COL */ -#define DIODE_DIRECTION COL2ROW - /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ #define LOCKING_SUPPORT_ENABLE /* Locking resynchronize hack */ diff --git a/keyboards/bear_face/info.json b/keyboards/bear_face/info.json index f6f666d77f..357847f418 100644 --- a/keyboards/bear_face/info.json +++ b/keyboards/bear_face/info.json @@ -8,6 +8,11 @@ "vid": "0xFEED", "pid": "0x09F5" }, + "matrix_pins": { + "cols": ["B5", "C7", "C6", "F0", "E6", "B7", "D0", "D1", "D2", "D3", "D5", "D4", "D6", "D7", "B4"], + "rows": ["F5", "F6", "F4", "F1", "B0", "B6"] + }, + "diode_direction": "COL2ROW", "backlight": { "pin": "F7" }, diff --git a/keyboards/bear_face/v1/v1.c b/keyboards/bear_face/v1/v1.c index 443b3016d7..3f10d10994 100644 --- a/keyboards/bear_face/v1/v1.c +++ b/keyboards/bear_face/v1/v1.c @@ -15,7 +15,7 @@ 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 "bear_face.h" +#include "v1.h" void keyboard_pre_init_kb(void) { //Sets LED pin as output diff --git a/keyboards/bear_face/v2/v2.c b/keyboards/bear_face/v2/v2.c index 443b3016d7..cf97145688 100644 --- a/keyboards/bear_face/v2/v2.c +++ b/keyboards/bear_face/v2/v2.c @@ -15,7 +15,7 @@ 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 "bear_face.h" +#include "v2.h" void keyboard_pre_init_kb(void) { //Sets LED pin as output |