diff options
author | Drashna Jaelre <drashna@live.com> | 2020-06-15 03:41:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-15 03:41:28 -0700 |
commit | 357a888d805c21c9cb4917f55d558195e8b85db5 (patch) | |
tree | fd1e8c30c3754ff89e8efd7e94ced3a1a8d92035 /users/drashna/config.h | |
parent | 7f5656996ca2f5a62a148ef9165d0681ba806f07 (diff) |
[Keymap] Drashna's Keymap Update - Display Edition (#9282)
OLED Display fixes
Add support for RGBLIGHT Layers
Add gaming layer to corn and kyria
RGBLight Startup Animation fixes and improvements (uses matrix_scan now!)
Pimoroni Trackball support added (IT'S RGB!!!)
Fix issues due to code changes
Diffstat (limited to 'users/drashna/config.h')
-rw-r--r-- | users/drashna/config.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/users/drashna/config.h b/users/drashna/config.h index 64b4b64ab7..7d83c78844 100644 --- a/users/drashna/config.h +++ b/users/drashna/config.h @@ -1,7 +1,7 @@ #pragma once // Use custom magic number so that when switching branches, EEPROM always gets reset -#define EECONFIG_MAGIC_NUMBER (uint16_t)0x1338 +#define EECONFIG_MAGIC_NUMBER (uint16_t)0x1339 /* Set Polling rate to 1000Hz */ #define USB_POLLING_INTERVAL_MS 1 @@ -98,8 +98,9 @@ # define ONESHOT_TIMEOUT 3000 #endif // !ONESHOT_TIMEOUT -#ifndef QMK_KEYS_PER_SCAN -# define QMK_KEYS_PER_SCAN 4 +#ifdef QMK_KEYS_PER_SCAN +# undef QMK_KEYS_PER_SCAN +# define QMK_KEYS_PER_SCAN 1 #endif // !QMK_KEYS_PER_SCAN // this makes it possible to do rolling combos (zx) with keys that |