diff options
Diffstat (limited to 'keyboards/xd87')
| -rw-r--r-- | keyboards/xd87/config.h | 3 | ||||
| -rw-r--r-- | keyboards/xd87/xd87.c | 35 |
2 files changed, 3 insertions, 35 deletions
diff --git a/keyboards/xd87/config.h b/keyboards/xd87/config.h index 7ed104c23..aa07e3225 100644 --- a/keyboards/xd87/config.h +++ b/keyboards/xd87/config.h | |||
| @@ -49,6 +49,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 49 | /* COL2ROW, ROW2COL*/ | 49 | /* COL2ROW, ROW2COL*/ |
| 50 | #define DIODE_DIRECTION COL2ROW | 50 | #define DIODE_DIRECTION COL2ROW |
| 51 | 51 | ||
| 52 | #define LED_CAPS_LOCK_PIN E2 | ||
| 53 | #define LED_PIN_ON_STATE 0 | ||
| 54 | |||
| 52 | #define BACKLIGHT_PIN D0 | 55 | #define BACKLIGHT_PIN D0 |
| 53 | // #define BACKLIGHT_BREATHING | 56 | // #define BACKLIGHT_BREATHING |
| 54 | #define BACKLIGHT_LEVELS 3 | 57 | #define BACKLIGHT_LEVELS 3 |
diff --git a/keyboards/xd87/xd87.c b/keyboards/xd87/xd87.c index a41b4f2db..1d21357e6 100644 --- a/keyboards/xd87/xd87.c +++ b/keyboards/xd87/xd87.c | |||
| @@ -14,38 +14,3 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #include "xd87.h" | 16 | #include "xd87.h" |
| 17 | |||
| 18 | void matrix_init_kb(void) { | ||
| 19 | // put your keyboard start-up code here | ||
| 20 | // runs once when the firmware starts up | ||
| 21 | led_init_ports(); | ||
| 22 | matrix_init_user(); | ||
| 23 | } | ||
| 24 | |||
| 25 | void matrix_scan_kb(void) { | ||
| 26 | // put your looping keyboard code here | ||
| 27 | // runs every cycle (a lot) | ||
| 28 | |||
| 29 | matrix_scan_user(); | ||
| 30 | } | ||
| 31 | |||
| 32 | bool process_record_kb(uint16_t keycode, keyrecord_t *record) { | ||
| 33 | // put your per-action keyboard code here | ||
| 34 | // runs for every action, just before processing by the firmware | ||
| 35 | |||
| 36 | return process_record_user(keycode, record); | ||
| 37 | } | ||
| 38 | |||
| 39 | bool led_update_kb(led_t led_state) { | ||
| 40 | bool res = led_update_user(led_state); | ||
| 41 | |||
| 42 | if (res) { | ||
| 43 | writePin(E2, !led_state.caps_lock); | ||
| 44 | } | ||
| 45 | |||
| 46 | return res; | ||
| 47 | } | ||
| 48 | |||
| 49 | void led_init_ports(void) { | ||
| 50 | setPinOutput(E2); | ||
| 51 | } | ||
