diff options
| author | QMK Bot <hello@qmk.fm> | 2022-01-24 15:58:34 +0000 |
|---|---|---|
| committer | QMK Bot <hello@qmk.fm> | 2022-01-24 15:58:34 +0000 |
| commit | 3340ca46e82c8b348d9131de53b73e83d1f2c285 (patch) | |
| tree | e0494ae560a18fca482d8dbf89e34461a2513714 | |
| parent | 8f22819d47a1eee0277e248c677637e9f839cd70 (diff) | |
| parent | 6cc4e32e61a275a624061fd9be643973476cad9c (diff) | |
Merge remote-tracking branch 'origin/master' into develop
| -rw-r--r-- | keyboards/bpiphany/frosty_flake/20130602/20130602.c | 8 | ||||
| -rw-r--r-- | keyboards/bpiphany/frosty_flake/20140521/20140521.c | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/keyboards/bpiphany/frosty_flake/20130602/20130602.c b/keyboards/bpiphany/frosty_flake/20130602/20130602.c index be4e1a3124..2c875d1a7f 100644 --- a/keyboards/bpiphany/frosty_flake/20130602/20130602.c +++ b/keyboards/bpiphany/frosty_flake/20130602/20130602.c | |||
| @@ -1,9 +1,9 @@ | |||
| 1 | #include "frosty_flake.h" | 1 | #include "frosty_flake.h" |
| 2 | 2 | ||
| 3 | void keyboard_pre_init_kb() { | 3 | void keyboard_pre_init_kb() { |
| 4 | setPinOutput(B7); // num lock | 4 | setPinOutput(B7); // caps lock |
| 5 | writePinHigh(B7); | 5 | writePinHigh(B7); |
| 6 | setPinOutput(C5); // caps lock | 6 | setPinOutput(C5); // num lock |
| 7 | writePinHigh(C7); | 7 | writePinHigh(C7); |
| 8 | setPinOutput(C6); // scroll lock | 8 | setPinOutput(C6); // scroll lock |
| 9 | writePinHigh(C6); | 9 | writePinHigh(C6); |
| @@ -16,8 +16,8 @@ bool led_update_kb(led_t usb_led) { | |||
| 16 | if (!led_update_user(usb_led)) | 16 | if (!led_update_user(usb_led)) |
| 17 | return true; | 17 | return true; |
| 18 | 18 | ||
| 19 | writePin(C5, !usb_led.caps_lock); | 19 | writePin(C5, !usb_led.num_lock); |
| 20 | writePin(B7, !usb_led.num_lock); | 20 | writePin(B7, !usb_led.caps_lock); |
| 21 | writePin(C6, !usb_led.scroll_lock); | 21 | writePin(C6, !usb_led.scroll_lock); |
| 22 | 22 | ||
| 23 | return true; | 23 | return true; |
diff --git a/keyboards/bpiphany/frosty_flake/20140521/20140521.c b/keyboards/bpiphany/frosty_flake/20140521/20140521.c index cd425cffa1..be4e1a3124 100644 --- a/keyboards/bpiphany/frosty_flake/20140521/20140521.c +++ b/keyboards/bpiphany/frosty_flake/20140521/20140521.c | |||
| @@ -16,8 +16,8 @@ bool led_update_kb(led_t usb_led) { | |||
| 16 | if (!led_update_user(usb_led)) | 16 | if (!led_update_user(usb_led)) |
| 17 | return true; | 17 | return true; |
| 18 | 18 | ||
| 19 | writePin(B7, !usb_led.caps_lock); | 19 | writePin(C5, !usb_led.caps_lock); |
| 20 | writePin(C5, !usb_led.num_lock); | 20 | writePin(B7, !usb_led.num_lock); |
| 21 | writePin(C6, !usb_led.scroll_lock); | 21 | writePin(C6, !usb_led.scroll_lock); |
| 22 | 22 | ||
| 23 | return true; | 23 | return true; |
