|
|
@ -19,6 +19,9 @@
|
|
|
|
#include "audio.h"
|
|
|
|
#include "audio.h"
|
|
|
|
#endif /* AUDIO_ENABLE */
|
|
|
|
#endif /* AUDIO_ENABLE */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_ANIMATIONS
|
|
|
|
|
|
|
|
#include "rgblight.h"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define wdt_intr_enable(value) \
|
|
|
|
#define wdt_intr_enable(value) \
|
|
|
@ -85,7 +88,12 @@ static void power_down(uint8_t wdto)
|
|
|
|
// This sometimes disables the start-up noise, so it's been disabled
|
|
|
|
// This sometimes disables the start-up noise, so it's been disabled
|
|
|
|
// stop_all_notes();
|
|
|
|
// stop_all_notes();
|
|
|
|
#endif /* AUDIO_ENABLE */
|
|
|
|
#endif /* AUDIO_ENABLE */
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_SLEEP
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_ANIMATIONS
|
|
|
|
|
|
|
|
rgblight_timer_disable();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
rgblight_disable();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// TODO: more power saving
|
|
|
|
// TODO: more power saving
|
|
|
|
// See PicoPower application note
|
|
|
|
// See PicoPower application note
|
|
|
|
// - I/O port input with pullup
|
|
|
|
// - I/O port input with pullup
|
|
|
@ -132,6 +140,12 @@ void suspend_wakeup_init(void)
|
|
|
|
backlight_init();
|
|
|
|
backlight_init();
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
led_set(host_keyboard_leds());
|
|
|
|
led_set(host_keyboard_leds());
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_SLEEP
|
|
|
|
|
|
|
|
rgblight_enable();
|
|
|
|
|
|
|
|
#ifdef RGBLIGHT_ANIMATIONS
|
|
|
|
|
|
|
|
rgblight_timer_enable();
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef NO_SUSPEND_POWER_DOWN
|
|
|
|
#ifndef NO_SUSPEND_POWER_DOWN
|
|
|
|