TuyaOS
tal_sleep.h
1
10#ifndef __TAL_SLEEP_H__
11#define __TAL_SLEEP_H__
12
13#include "tuya_cloud_types.h"
14
15#ifdef __cplusplus
16extern "C" {
17#endif
18
19
27OPERATE_RET tal_cpu_sleep_callback_register(TUYA_SLEEP_CB_T *sleep_cb);
28
36VOID_T tal_cpu_allow_sleep(VOID_T);
37
45VOID_T tal_cpu_force_wakeup(VOID_T);
46
54VOID_T tal_cpu_set_lp_mode(BOOL_T lp_enable);
55
63BOOL_T tal_cpu_get_lp_mode(VOID_T);
64
72OPERATE_RET tal_cpu_lp_enable(VOID_T);
73
81OPERATE_RET tal_cpu_lp_disable(VOID_T);
82
83
84#ifdef __cplusplus
85}
86#endif
87
88#endif
89
sleep callback
Definition: tuya_cloud_types.h:831