blob: d62a7e7ced3928e70bfa4e4841802f3ea13df1b0 [file] [log] [blame]
#include "mbtk_alarm.h"
/*===========================================================================
FUNCTION mbtk_wakealarm_set()
DESCRIPTION:
Set sleep wake alarm.
PARAMETERS:
time_sec [IN]: Sleep wake-up time in second.
RETURN VALUE:
int : Return 0 if success, other for failures.
===========================================================================*/
int mbtk_wakealarm_set(unsigned long time_sec);
{
return 0;
}
/*===========================================================================
FUNCTION mbtk_poweralarm_set()
DESCRIPTION:
Set shutdown alarm clock.
PARAMETERS:
time_sec [IN]: Shutdown wake-up time in second.
RETURN VALUE:
int : Return 0 if success, other for failures.
===========================================================================*/
int mbtk_poweralarm_set(unsigned long time_sec)
{
return 0;
}