summaryrefslogtreecommitdiffstats
path: root/keyboards/cablecardesigns/phoenix/phoenix.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2023-06-02 07:46:36 +0000
committerQMK Bot <hello@qmk.fm>2023-06-02 07:46:36 +0000
commitef788c68f4f5c40301f86d0f0c6f90d81dbb34d4 (patch)
tree57a8d1837c63549dec3a5072916bc8dbd6536de2 /keyboards/cablecardesigns/phoenix/phoenix.c
parentaa33fb00fdba2d7b1e0f4197c2e6b78755b171e9 (diff)
parentae5bcaac0d49fb8a72f87800f4d22b0e6e6de15c (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/cablecardesigns/phoenix/phoenix.c')
-rwxr-xr-xkeyboards/cablecardesigns/phoenix/phoenix.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/keyboards/cablecardesigns/phoenix/phoenix.c b/keyboards/cablecardesigns/phoenix/phoenix.c
new file mode 100755
index 0000000000..251f79a953
--- /dev/null
+++ b/keyboards/cablecardesigns/phoenix/phoenix.c
@@ -0,0 +1,22 @@
+/* Copyright 2023 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 "quantum.h"
+
+void led_init_ports(void) {
+ // Set our LED pins as open drain outputs
+ palSetLineMode(LED_CAPS_LOCK_PIN, PAL_MODE_OUTPUT_OPENDRAIN);
+}