core: Fix for warning of unused function standby()
This commit is contained in:
parent
8fd2cef441
commit
01b881e87e
1 changed files with 2 additions and 0 deletions
|
@ -70,6 +70,7 @@ static void power_down(uint8_t wdto)
|
||||||
wdt_disable();
|
wdt_disable();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef SUSPEND_MODE_STANDBY
|
||||||
static void standby(void)
|
static void standby(void)
|
||||||
{
|
{
|
||||||
#ifdef SLEEP_MODE_STANDBY
|
#ifdef SLEEP_MODE_STANDBY
|
||||||
|
@ -80,6 +81,7 @@ static void standby(void)
|
||||||
sleep_disable();
|
sleep_disable();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static void idle(void)
|
static void idle(void)
|
||||||
{
|
{
|
||||||
|
|
Reference in a new issue