fix issue with rgbinit unused variable (#3165)
* fix issue with rgbinit wiping out customization. * removed unused variable
This commit is contained in:
parent
2bf18d0216
commit
974d155505
1 changed files with 0 additions and 2 deletions
|
@ -48,7 +48,6 @@ const uint16_t RGBLED_RGBTEST_INTERVALS[] PROGMEM = {1024};
|
|||
rgblight_config_t rgblight_config;
|
||||
|
||||
LED_TYPE led[RGBLED_NUM];
|
||||
uint8_t rgblight_inited = 0;
|
||||
bool rgblight_timer_enabled = false;
|
||||
|
||||
void sethsv(uint16_t hue, uint8_t sat, uint8_t val, LED_TYPE *led1) {
|
||||
|
@ -142,7 +141,6 @@ void eeconfig_debug_rgblight(void) {
|
|||
void rgblight_init(void) {
|
||||
debug_enable = 1; // Debug ON!
|
||||
dprintf("rgblight_init called.\n");
|
||||
rgblight_inited = 1;
|
||||
dprintf("rgblight_init start!\n");
|
||||
if (!eeconfig_is_enabled()) {
|
||||
dprintf("rgblight_init eeconfig is not enabled.\n");
|
||||
|
|
Loading…
Reference in a new issue