summaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/frosty_flake/20130602/20130602.c
diff options
context:
space:
mode:
authorAndrew Missel <dyindude@users.noreply.github.com>2022-01-08 15:22:14 -0600
committerGitHub <noreply@github.com>2022-01-08 13:22:14 -0800
commit4c080be8e8fd2d1a7a818022634b08c76ee92e40 (patch)
tree0984c4a100022ddc3d1faef2735d7e20b62eb153 /keyboards/bpiphany/frosty_flake/20130602/20130602.c
parent31331e6d33a46d98a3a853bd7fef39f898977386 (diff)
[Keyboard] Bathroom Epiphanies Frosty Flake rev 20130602 (#15365)
* add optional support for Frosty Flake rev 20130602 * update documentation with instructions on building for rev 20130602 * support revisions using subfolders instead of preprocessor directives * rules.mk cleanup
Diffstat (limited to 'keyboards/bpiphany/frosty_flake/20130602/20130602.c')
-rw-r--r--keyboards/bpiphany/frosty_flake/20130602/20130602.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/keyboards/bpiphany/frosty_flake/20130602/20130602.c b/keyboards/bpiphany/frosty_flake/20130602/20130602.c
new file mode 100644
index 0000000000..be4e1a3124
--- /dev/null
+++ b/keyboards/bpiphany/frosty_flake/20130602/20130602.c
@@ -0,0 +1,24 @@
+#include "frosty_flake.h"
+
+void keyboard_pre_init_kb() {
+ setPinOutput(B7); // num lock
+ writePinHigh(B7);
+ setPinOutput(C5); // caps lock
+ writePinHigh(C7);
+ setPinOutput(C6); // scroll lock
+ writePinHigh(C6);
+
+ keyboard_pre_init_user();
+}
+
+bool led_update_kb(led_t usb_led) {
+ // user requests no further processing
+ if (!led_update_user(usb_led))
+ return true;
+
+ writePin(C5, !usb_led.caps_lock);
+ writePin(B7, !usb_led.num_lock);
+ writePin(C6, !usb_led.scroll_lock);
+
+ return true;
+}