diff options
author | Jack Humbert <jack.humb@gmail.com> | 2016-12-29 21:42:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-29 21:42:16 -0500 |
commit | 8a76075ca7bb2a8346053b8293e177853fe8e92f (patch) | |
tree | 5a17ac0ea5df1fd466ff44ffa68ba83a531b0dab | |
parent | 223cffd92f44311612aacbfb3358ec7a33a68d74 (diff) | |
parent | b8e74c378b1f118178edf0634d9fa7f0f9dd5e08 (diff) |
Merge pull request #972 from mechkeys/rgb_compat
Add extern for 'led' global, set 'weak' attribute for rgblight_set()
-rw-r--r-- | quantum/rgblight.c | 1 | ||||
-rw-r--r-- | quantum/rgblight.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 6e335a4831..52a09817a1 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c @@ -370,6 +370,7 @@ void rgblight_setrgb(uint8_t r, uint8_t g, uint8_t b) { rgblight_set(); } +__attribute__ ((weak)) void rgblight_set(void) { if (rgblight_config.enable) { #ifdef RGBW diff --git a/quantum/rgblight.h b/quantum/rgblight.h index ceb624692a..726b8de72e 100644 --- a/quantum/rgblight.h +++ b/quantum/rgblight.h @@ -40,6 +40,8 @@ #include "eeconfig.h" #include "light_ws2812.h" +extern LED_TYPE led[RGBLED_NUM]; + extern const uint8_t RGBLED_BREATHING_INTERVALS[4] PROGMEM; extern const uint8_t RGBLED_RAINBOW_MOOD_INTERVALS[3] PROGMEM; extern const uint8_t RGBLED_RAINBOW_SWIRL_INTERVALS[3] PROGMEM; |