diff options
author | skullY <skullydazed@gmail.com> | 2016-04-10 21:16:49 -0700 |
---|---|---|
committer | skullY <skullydazed@gmail.com> | 2016-04-10 21:16:49 -0700 |
commit | 97f8f378761506914b69d4fd2d5661bfcae28295 (patch) | |
tree | c3aeb4468cb682dd1a48ccc296173cf9d4d576b2 /quantum | |
parent | dc451b505bf6c21f3a423a299b112704b3b0092b (diff) | |
download | qmk_firmware-97f8f378761506914b69d4fd2d5661bfcae28295.tar.gz qmk_firmware-97f8f378761506914b69d4fd2d5661bfcae28295.zip |
Fixup RGBLIGHT support for clueboard2
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/rgblight.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 2215cf5cdf..6adc9e2784 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c @@ -190,7 +190,7 @@ void rgblight_mode(uint8_t mode) { rgblight_config.mode = mode; } eeconfig_write_rgblight(rgblight_config.raw); - dprintf("rgblight mode: %u\n", rgblight_config.mode); + xprintf("rgblight mode: %u\n", rgblight_config.mode); if (rgblight_config.mode == 1) { rgblight_timer_disable(); } else if (rgblight_config.mode >=2 && rgblight_config.mode <=23) { @@ -207,7 +207,7 @@ void rgblight_mode(uint8_t mode) { void rgblight_toggle(void) { rgblight_config.enable ^= 1; eeconfig_write_rgblight(rgblight_config.raw); - dprintf("rgblight toggle: rgblight_config.enable = %u\n", rgblight_config.enable); + xprintf("rgblight toggle: rgblight_config.enable = %u\n", rgblight_config.enable); if (rgblight_config.enable) { rgblight_mode(rgblight_config.mode); } else { @@ -300,7 +300,7 @@ void rgblight_sethsv(uint16_t hue, uint8_t sat, uint8_t val){ rgblight_config.sat = sat; rgblight_config.val = val; eeconfig_write_rgblight(rgblight_config.raw); - dprintf("rgblight set hsv [EEPROM]: %u,%u,%u\n", rgblight_config.hue, rgblight_config.sat, rgblight_config.val); + xprintf("rgblight set hsv [EEPROM]: %u,%u,%u\n", rgblight_config.hue, rgblight_config.sat, rgblight_config.val); } } |