23 lines
456 B
C
23 lines
456 B
C
|
|
/*
|
||
|
|
* Copyright (c) CompanyNameMagicTag 2019-2020. All rights reserved.
|
||
|
|
* Description: power manage handle.
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef __MRS_COMMON_POWER_MANAGE_H__
|
||
|
|
#define __MRS_COMMON_POWER_MANAGE_H__
|
||
|
|
|
||
|
|
#include <soc_types.h>
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
extern "C" {
|
||
|
|
#endif
|
||
|
|
|
||
|
|
/* power management initialization by applicatuon-layer */
|
||
|
|
td_void mrs_common_power_manage_init(td_void);
|
||
|
|
|
||
|
|
#ifdef __cplusplus
|
||
|
|
}
|
||
|
|
#endif
|
||
|
|
#endif /* __MRS_COMMON_POWER_MANAGE_H__ */
|
||
|
|
|