diff options
| author | Jonathan Rascher <jon@bcat.name> | 2019-05-22 23:08:48 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-05-22 21:08:48 -0700 |
| commit | fcb56534111652b9fa19d9d8e7bce635c7a63eb6 (patch) | |
| tree | fbe0d830ca86e8624f7addeb14b8a9cd00ac3007 /users/bcat | |
| parent | d31c54c8aff2645ca7762ad423735d409561ba39 (diff) | |
| download | qmk_firmware-fcb56534111652b9fa19d9d8e7bce635c7a63eb6.tar.gz qmk_firmware-fcb56534111652b9fa19d9d8e7bce635c7a63eb6.zip | |
[Keymap] Switch Quefrency keymap from I2C back to serial; factor common configs into userspace (#5951)
* Switch Quefrency from flaky I2C back to serial
* Lower mouse wheel speed on Quefrency slightly
* Migrate common settings to userspace
* Enable Bootmagic Lite for consistent reset to bootloader.
* Turn off some undesired features across all keyboards.
* Remove EEPROM reset keybinding from all keyboards since Bootmagic Lite
also does an EEPROM reset.
* Set backlight and underglow increments consistently across all
keyboards since lots of them like to override the deafults.
* Set mouse keys consistently across all keyboards.
* Update function layer keymap images
Diffstat (limited to 'users/bcat')
| -rw-r--r-- | users/bcat/config.h | 31 | ||||
| -rw-r--r-- | users/bcat/rules.mk | 11 |
2 files changed, 42 insertions, 0 deletions
diff --git a/users/bcat/config.h b/users/bcat/config.h new file mode 100644 index 000000000..a29aded71 --- /dev/null +++ b/users/bcat/config.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | /* Turn off RGB lighting when the host goes to sleep. */ | ||
| 2 | #define RGBLIGHT_SLEEP | ||
| 3 | |||
| 4 | /* Keep backlight and RGB level increments consistent across keyboards. */ | ||
| 5 | #undef BACKLIGHT_LEVELS | ||
| 6 | #undef RGBLIGHT_HUE_STEP | ||
| 7 | #undef RGBLIGHT_SAT_STEP | ||
| 8 | #undef RGBLIGHT_VAL_STEP | ||
| 9 | |||
| 10 | #define BACKLIGHT_LEVELS 7 | ||
| 11 | #define RGVLIGHT_HUE_STEP 8 | ||
| 12 | #define RGVLIGHT_SAT_STEP 17 | ||
| 13 | #define RGVLIGHT_VAL_STEP 17 | ||
| 14 | |||
| 15 | /* Make mouse operation smoother. */ | ||
| 16 | #undef MOUSEKEY_DELAY | ||
| 17 | #undef MOUSEKEY_INTERVAL | ||
| 18 | |||
| 19 | #define MOUSEKEY_DELAY 0 | ||
| 20 | #define MOUSEKEY_INTERVAL 16 | ||
| 21 | |||
| 22 | /* Lower mouse speed to adjust for reduced MOUSEKEY_INTERVAL. */ | ||
| 23 | #undef MOUSEKEY_MAX_SPEED | ||
| 24 | #undef MOUSEKEY_TIME_TO_MAX | ||
| 25 | #undef MOUSEKEY_WHEEL_MAX_SPEED | ||
| 26 | #undef MOUSEKEY_WHEEL_TIME_TO_MAX | ||
| 27 | |||
| 28 | #define MOUSEKEY_MAX_SPEED 7 | ||
| 29 | #define MOUSEKEY_TIME_TO_MAX 150 | ||
| 30 | #define MOUSEKEY_WHEEL_MAX_SPEED 3 | ||
| 31 | #define MOUSEKEY_WHEEL_TIME_TO_MAX 150 | ||
diff --git a/users/bcat/rules.mk b/users/bcat/rules.mk new file mode 100644 index 000000000..59f82709a --- /dev/null +++ b/users/bcat/rules.mk | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | # Enable Bootmagic Lite to consistently reset to bootloader and clear EEPROM. | ||
| 2 | BOOTMAGIC_ENABLE = lite | ||
| 3 | |||
| 4 | # Enable mouse and media keys on all keyboards. | ||
| 5 | MOUSEKEY_ENABLE = yes | ||
| 6 | EXTRAKEY_ENABLE = yes | ||
| 7 | |||
| 8 | # Disable some unwanted features on all keyboards. | ||
| 9 | CONSOLE_ENABLE = no | ||
| 10 | COMMAND_ENABLE = no | ||
| 11 | NKRO_ENABLE = no | ||
