summaryrefslogtreecommitdiff
path: root/keyboards/emery65/emery65.c
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2021-11-16 19:15:35 +0000
committerGitHub <noreply@github.com>2021-11-16 11:15:35 -0800
commitbed4ab6f6fb0b5b111d9a82eb07b9dcdceea6a12 (patch)
treea8b93b4230e058b1848668a4bd6d0bf2567653c3 /keyboards/emery65/emery65.c
parent22eba600418696542a6b84125f4dff2f37638c1e (diff)
[Keyboard] Emery65 (#15145)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: yiancar <yiancar@gmail.com>
Diffstat (limited to 'keyboards/emery65/emery65.c')
-rw-r--r--keyboards/emery65/emery65.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/emery65/emery65.c b/keyboards/emery65/emery65.c
new file mode 100644
index 0000000000..11cac7c462
--- /dev/null
+++ b/keyboards/emery65/emery65.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 "emery65.h"
+
+void led_init_ports(void) {
+ // Set our LED pins as open drain outputs
+ palSetLineMode(LED_CAPS_LOCK_PIN, PAL_MODE_OUTPUT_OPENDRAIN);
+}