diff options
author | Xyverz <xyverz@gmail.com> | 2018-08-04 09:01:26 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-08-04 09:01:26 -0700 |
commit | 3e8f2728732b20b5b6af63db73ad8b6f2be18823 (patch) | |
tree | d2440b5f7aaed4522ad2dd91c2dbd647bf151963 /layouts/community/ortho_5x12/xyverz/keymap.c | |
parent | f8a915a2dbed01df73f14fc9baef60f4265d42e9 (diff) |
Keyboard: LED fixes for Kinesis Stapelberg controller, and keymap changes (#3564)
* Rules for vitamins_included
Added a section to disable RGB underglow for the Let's Split
Vitamins Included board.
* fixing ortho_4x12 configs
* Using upstream/master version instead
* Additions and Corrections
Corrected the Kinesis/Stapelberg's .c file to allow LEDs to work
Removed excess cruft from my Kinesis keymap to reflect this change
Other minor tweaks and adjustments to my ortho_4x12 and 5x12 layouts
* Updated readme
Diffstat (limited to 'layouts/community/ortho_5x12/xyverz/keymap.c')
-rw-r--r-- | layouts/community/ortho_5x12/xyverz/keymap.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/layouts/community/ortho_5x12/xyverz/keymap.c b/layouts/community/ortho_5x12/xyverz/keymap.c index a0f1274d01..23a456e6d6 100644 --- a/layouts/community/ortho_5x12/xyverz/keymap.c +++ b/layouts/community/ortho_5x12/xyverz/keymap.c @@ -175,6 +175,16 @@ void persistent_default_layer_set(uint16_t default_layer) { default_layer_set(default_layer); } +void matrix_init_user(void) { +#ifdef BOOTLOADER_CATERINA + // This will disable the red LEDs on the ProMicros + DDRD &= ~(1<<5); + PORTD &= ~(1<<5); + DDRB &= ~(1<<0); + PORTB &= ~(1<<0); +#endif +}; + bool process_record_user(uint16_t keycode, keyrecord_t *record) { switch (keycode) { case QWERTY: |