core: Fix sleep_led

This commit is contained in:
tmk 2016-10-12 14:35:53 +09:00
parent e7b8da47ce
commit 5969d6267f
4 changed files with 29 additions and 20 deletions

View file

@ -96,7 +96,11 @@ void suspend_idle(uint8_t time)
void suspend_power_down(void)
{
#ifdef SUSPEND_MODE_STANDBY
#ifdef NO_SUSPEND_POWER_DOWN
;
#elif defined(SUSPEND_MODE_NOPOWERSAVE)
;
#elif defined(SUSPEND_MODE_STANDBY)
standby();
#elif defined(SUSPEND_MODE_IDLE)
idle();