diff options
author | Xyverz <xyverz@gmail.com> | 2018-09-03 16:57:06 -0700 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-09-03 16:57:06 -0700 |
commit | f48e20c1eb52d7281276025fd1cbaa81e1856f83 (patch) | |
tree | 0759c3341cd282324c47722120dcd4185502fde7 /keyboards/atreus62/keymaps/xyverz/keymap.c | |
parent | aa795dc33ee1c854a3ea5a3cb3d15e7e68be89d6 (diff) | |
download | qmk_firmware-f48e20c1eb52d7281276025fd1cbaa81e1856f83.tar.gz qmk_firmware-f48e20c1eb52d7281276025fd1cbaa81e1856f83.zip |
Keymap: Updates to xyverz keymaps (#3841)
* 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
* 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
* Creating my own userspace
* Added Rorschach keymap
* renamed userspace folder
I renamed my userspace folder since I'm not ready to start using
it just yet, and I want to get my keyboards programmed. This is
a temporary thing and will be fixed later as I get time.
* adding files in "new" folder
* Disabling LEDs on Pro Micro
* Modifications to Kinesis keymap
* More kinesis tweaks
* removed userspace from master
Created a new branch for my userspace stuff. I'll work on it there.
* Moved keymap to separate branch
Moved the Rorschach keymap I was working on to a separate branch
for development purposes. Not ready to push it up to upstream
master.
Diffstat (limited to 'keyboards/atreus62/keymaps/xyverz/keymap.c')
-rw-r--r-- | keyboards/atreus62/keymaps/xyverz/keymap.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/keyboards/atreus62/keymaps/xyverz/keymap.c b/keyboards/atreus62/keymaps/xyverz/keymap.c index 3788317378..0f2e8ea08f 100644 --- a/keyboards/atreus62/keymaps/xyverz/keymap.c +++ b/keyboards/atreus62/keymaps/xyverz/keymap.c @@ -127,8 +127,17 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { }; -const uint16_t PROGMEM fn_actions[] = { +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 +}; +const uint16_t PROGMEM fn_actions[] = { }; void persistent_default_layer_set(uint16_t default_layer) { |