summaryrefslogtreecommitdiffstats
path: root/keyboards/cablecardesigns/phoenix/phoenix.c
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2023-06-02 08:45:54 +0100
committerGitHub <noreply@github.com>2023-06-02 08:45:54 +0100
commitae5bcaac0d49fb8a72f87800f4d22b0e6e6de15c (patch)
tree761bbcaf4713a3924d48549c9e6e761223cc8934 /keyboards/cablecardesigns/phoenix/phoenix.c
parentb110a09886b9d27fea33de2a488e2b74d9baa27e (diff)
[keyboard] Phoenix (#21051)
* Update keyboards/cablecardesigns/phoenix/
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);
+}