aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/idb/idb_60/idb_60.c
diff options
context:
space:
mode:
authorpngu <34752364+itspngu@users.noreply.github.com>2020-01-10 09:57:49 +0100
committerJames Young <18669334+noroadsleft@users.noreply.github.com>2020-01-10 00:57:49 -0800
commitaf77912d2d6b426201d75c84e8836d6d5d8c45c5 (patch)
treee99225e6e10917709117b1f24c4872f078023540 /keyboards/idb/idb_60/idb_60.c
parent9397bffd014c1b7f8db28675c840499f9003098b (diff)
downloadfirmware-af77912d2d6b426201d75c84e8836d6d5d8c45c5.tar.gz
firmware-af77912d2d6b426201d75c84e8836d6d5d8c45c5.tar.bz2
firmware-af77912d2d6b426201d75c84e8836d6d5d8c45c5.zip
[Keyboard] Changes to support latest release of VIA, moved files to "idb" folder in "keymaps" in preparation of adding more boards, made changes to LAYOUT_ macros (#7798)
* make vendor folder for idb keyboards * set default debounce to eager_pk, clean up vendor/product ID * refactoring for VIA * made changes to support latest release of VIA, added default keymap that's in line with the most popular configuration * Made suggested formatting changes * rebase to get rid of lufa files * removed idb_60.json that's only meant for via itself * Update keyboards/idb/idb_60/keymaps/via/rules.mk * Update keyboards/idb/idb_60/readme.md * Update keyboards/idb/idb_60/readme.md * Update keyboards/idb/idb_60/readme.md * Update keyboards/idb/idb_60/rules.mk * Update keyboards/idb/idb_60/config.h * Update keyboards/idb/idb_60/readme.md * made suggested formatting changes * fixing lufa * Update keyboards/idb/idb_60/rules.mk * Update keyboards/idb/idb_60/config.h * made suggested changes
Diffstat (limited to 'keyboards/idb/idb_60/idb_60.c')
-rw-r--r--keyboards/idb/idb_60/idb_60.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/keyboards/idb/idb_60/idb_60.c b/keyboards/idb/idb_60/idb_60.c
new file mode 100644
index 000000000..d280f644b
--- /dev/null
+++ b/keyboards/idb/idb_60/idb_60.c
@@ -0,0 +1,23 @@
+#include "idb_60.h"
+
+extern inline void _idb_60_caps_led_on(void);
+extern inline void _idb_60_esc_led_on(void);
+
+extern inline void _idb_60_caps_led_off(void);
+extern inline void _idb_60_esc_led_off(void);
+
+void keyboard_pre_init_kb(void) {
+ setPinOutput(C4);
+ setPinOutput(C5);
+}
+
+void led_set_kb(uint8_t usb_led) {
+
+ if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
+ _idb_60_caps_led_on();
+ } else {
+ _idb_60_caps_led_off();
+ }
+
+ led_set_user(usb_led);
+}