From d60031b321316440256ce4af3dcc64f885475cba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81lvaro=20A=2E=20Volpato?= Date: Thu, 17 Dec 2020 02:21:37 -0300 Subject: [Keyboard] Technika (#10946) * Initial technika support * Updated README * Update keyboards/technika/config.h Remove DESCRIPTION from usb desciptor fields Co-authored-by: Drashna Jaelre * Update keyboards/technika/rules.mk Remove words from comments in rules.mk Co-authored-by: Ryan * Remove old KC_NO definitions and used default one * Use defines for num, caps and scroll lock LED pins * Fix underscore KC_NO substitution in keymap Co-authored-by: Gondolindrim Co-authored-by: Drashna Jaelre Co-authored-by: Ryan --- keyboards/technika/technika.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 keyboards/technika/technika.c (limited to 'keyboards/technika/technika.c') diff --git a/keyboards/technika/technika.c b/keyboards/technika/technika.c new file mode 100644 index 0000000000..35a8666c73 --- /dev/null +++ b/keyboards/technika/technika.c @@ -0,0 +1,26 @@ +/* +Copyright 2020 Álvaro "Gondolindrim" Volpato + +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 . +*/ + +#include "technika.h" + +void keyboard_pre_init_kb(void) { + setPinOutput(A15); + setPinOutput(B3); + setPinOutput(B4); + + keyboard_pre_init_user(); +} -- cgit v1.2.3