summaryrefslogtreecommitdiffstats
path: root/keyboards/atreus62
diff options
context:
space:
mode:
authorXyverz <xyverz@gmail.com>2018-09-04 01:57:06 +0200
committerDrashna Jaelre <drashna@live.com>2018-09-04 01:57:06 +0200
commitf48e20c1eb52d7281276025fd1cbaa81e1856f83 (patch)
tree0759c3341cd282324c47722120dcd4185502fde7 /keyboards/atreus62
parentaa795dc33ee1c854a3ea5a3cb3d15e7e68be89d6 (diff)
downloadqmk_firmware-f48e20c1eb52d7281276025fd1cbaa81e1856f83.tar.gz
qmk_firmware-f48e20c1eb52d7281276025fd1cbaa81e1856f83.tar.xz
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')
-rw-r--r--keyboards/atreus62/keymaps/xyverz/keymap.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/keyboards/atreus62/keymaps/xyverz/keymap.c b/keyboards/atreus62/keymaps/xyverz/keymap.c
index 378831737..0f2e8ea08 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) {