blob: d62a7e7ced3928e70bfa4e4841802f3ea13df1b0 [file] [log] [blame]
b.liu5fa9e772023-11-23 18:00:55 +08001#include "mbtk_alarm.h"
2
3/*===========================================================================
4FUNCTION mbtk_wakealarm_set()
5
6DESCRIPTION:
7 Set sleep wake alarm.
8
9PARAMETERS:
10 time_sec [IN]: Sleep wake-up time in second.
11
12RETURN VALUE:
13 int : Return 0 if success, other for failures.
14
15===========================================================================*/
16int mbtk_wakealarm_set(unsigned long time_sec);
17{
18
19 return 0;
20}
21
22/*===========================================================================
23FUNCTION mbtk_poweralarm_set()
24
25DESCRIPTION:
26 Set shutdown alarm clock.
27
28PARAMETERS:
29 time_sec [IN]: Shutdown wake-up time in second.
30
31RETURN VALUE:
32 int : Return 0 if success, other for failures.
33
34===========================================================================*/
35int mbtk_poweralarm_set(unsigned long time_sec)
36{
37
38 return 0;
39}
40
41