diff options
Diffstat (limited to 'keyboards/exclusive')
| -rw-r--r-- | keyboards/exclusive/e85/soldered/soldered.c | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/keyboards/exclusive/e85/soldered/soldered.c b/keyboards/exclusive/e85/soldered/soldered.c index e01221a2c..0a7de55ce 100644 --- a/keyboards/exclusive/e85/soldered/soldered.c +++ b/keyboards/exclusive/e85/soldered/soldered.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* Copyright 2020 MechMerlin | 1 | /* Copyright 2020 VashtaNerada |
| 2 | * | 2 | * |
| 3 | * This program is free software: you can redistribute it and/or modify | 3 | * This program is free software: you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License as published by | 4 | * it under the terms of the GNU General Public License as published by |
| @@ -15,3 +15,16 @@ | |||
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "soldered.h" | 17 | #include "soldered.h" |
| 18 | |||
| 19 | void keyboard_pre_init_kb(void) { | ||
| 20 | setPinOutput(C7); | ||
| 21 | |||
| 22 | keyboard_pre_init_user(); | ||
| 23 | } | ||
| 24 | |||
| 25 | bool led_update_kb(led_t led_state) { | ||
| 26 | if (led_update_user(led_state)) { | ||
| 27 | writePin(C7, led_state.caps_lock); | ||
| 28 | } | ||
| 29 | return true; | ||
| 30 | } | ||
