summaryrefslogtreecommitdiff
path: root/keyboards/hand88/hand88.c
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2021-03-12 22:37:41 +0000
committerGitHub <noreply@github.com>2021-03-13 09:37:41 +1100
commitb96c18c9529cbc46e3947a5b5fed3d3e134bf698 (patch)
tree3f0c9bd701d7ba34d32be4f5a7f80ab19ae17d64 /keyboards/hand88/hand88.c
parent225bff226fd4d32daa4b93e51ba4348efc854e47 (diff)
Hand 88 (#11963)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'keyboards/hand88/hand88.c')
-rwxr-xr-xkeyboards/hand88/hand88.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/hand88/hand88.c b/keyboards/hand88/hand88.c
new file mode 100755
index 0000000000..ad182b4809
--- /dev/null
+++ b/keyboards/hand88/hand88.c
@@ -0,0 +1,21 @@
+/* Copyright 2021 Yiancar-Designs
+ *
+ * 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 "hand88.h"
+
+void led_init_ports(void) {
+ // Set our LED pins as open drain outputs
+ palSetLineMode(LED_CAPS_LOCK_PIN, PAL_MODE_OUTPUT_OPENDRAIN);
+}