summaryrefslogtreecommitdiff
path: root/keyboards/carbo65/carbo65.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-04-20 04:13:18 +0000
committerQMK Bot <hello@qmk.fm>2021-04-20 04:13:18 +0000
commitb1f48da5ee09a2b132d631e9f40f9b248eb941aa (patch)
tree5adf6650b03f354969222ce227d0aafca4579310 /keyboards/carbo65/carbo65.c
parentc02137a0d245a7be8ca44cf46f05a632cc8fc702 (diff)
parent8405d28670c7c8235d0bc4f48b8ab63e472e128e (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/carbo65/carbo65.c')
-rw-r--r--keyboards/carbo65/carbo65.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyboards/carbo65/carbo65.c b/keyboards/carbo65/carbo65.c
new file mode 100644
index 0000000000..1d04b48221
--- /dev/null
+++ b/keyboards/carbo65/carbo65.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 "carbo65.h"
+
+void led_init_ports(void) {
+ // Set our LED pins as open drain outputs
+ palSetLineMode(LED_CAPS_LOCK_PIN, PAL_MODE_OUTPUT_OPENDRAIN);
+}