diff options
author | Nick Brassel <nick@tzarc.org> | 2021-07-24 13:40:00 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-24 13:40:00 +1000 |
commit | 489c0f969d8aedf010b0d0d26eb7eca82db3bc93 (patch) | |
tree | d6d7db029b0b14366b4372c5f3ec58a470240574 /quantum/rgblight | |
parent | 83a0d85f2b1b9d640f866bcb1e1906a77af102f7 (diff) |
Disables rgblight twinkle by default. (#13677)
This takes up about 700 bytes of space, and needs to be swapped to
opt-in, rather than opt-out. Build failures in general on AVR due to the
scarcity of available flash. People can re-enable it by adding to their
keymap's config.h files:
```
#define RGBLIGHT_EFFECT_TWINKLE
```
Diffstat (limited to 'quantum/rgblight')
-rw-r--r-- | quantum/rgblight/rgblight.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/quantum/rgblight/rgblight.h b/quantum/rgblight/rgblight.h index 58250a0888..49f82bdfc6 100644 --- a/quantum/rgblight/rgblight.h +++ b/quantum/rgblight/rgblight.h @@ -79,7 +79,6 @@ # define RGBLIGHT_EFFECT_STATIC_GRADIENT # define RGBLIGHT_EFFECT_RGB_TEST # define RGBLIGHT_EFFECT_ALTERNATING -# define RGBLIGHT_EFFECT_TWINKLE #endif #ifdef RGBLIGHT_STATIC_PATTERNS |