summaryrefslogtreecommitdiff
path: root/keyboards/evyd13/gud70/gud70.c
diff options
context:
space:
mode:
authorDrashna Jael're <drashna@live.com>2021-08-13 14:15:58 -0700
committerDrashna Jael're <drashna@live.com>2021-08-13 14:15:58 -0700
commit7ed235d15d58661d75f1ebf0e1a5eca44dc4132b (patch)
treea4f60382d1b94fb64dac58cae8a27126c3b10123 /keyboards/evyd13/gud70/gud70.c
parent854b292873902242869c030a838aed6d691ac51c (diff)
parentaf98005b0252cea38cccd28d7aa72109f3a28f52 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/evyd13/gud70/gud70.c')
-rw-r--r--keyboards/evyd13/gud70/gud70.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/evyd13/gud70/gud70.c b/keyboards/evyd13/gud70/gud70.c
new file mode 100644
index 0000000000..7b8c0a98f9
--- /dev/null
+++ b/keyboards/evyd13/gud70/gud70.c
@@ -0,0 +1,22 @@
+/* Copyright 2020 Evelien Dekkers
+ *
+ * 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 "gud70.h"
+
+void keyboard_pre_init_kb(void) {
+ // Enable top LED
+ setPinOutput(B3);
+ writePinLow(B3);
+}