SysPower.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:1k
- //
- // (C)版权2007 深圳市键桥通讯有限公司
- //
- // 文件名称: SysPower.h
- //
- // 创建日期: 2007.07.31
- //
- // 创建人 : Neil
- //
- // 修改人 :
- //
- // 描 述: 系统定时开关机头文件
- //
- // 版 本:1.0.0
- //
- //--------------------------------------------------------------------
- #ifndef __SYSPOWER_H
- #define __SYSPOWER_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #define SYS_SERVICES_BASE_ADDRESS 0x20F00000
- typedef enum _Sys_Power_TimeType
- {
- ONCE_ONLY,
- ONCE_A_DAY,
- INVALID_SETTING,
- TIME_TYPE_MAX
- }KB_SYS_POWER_TIME_TYPE;
- BOOL KB_SystemShutDown(UINT16 Hour, UINT16 Minute, KB_SYS_POWER_TIME_TYPE eType);
- BOOL KB_SystemSetUp(UINT16 Hour, UINT16 Minute, KB_SYS_POWER_TIME_TYPE eType);
- void KB_SystemShutDownNow(void);
- void KB_SystemSetUpNow(void);
- void KB_SysPowerInit(void);
- ST_ErrorCode_t KD_Restart(void);
- BOOL KB_SysPowerIsDown(void);
- #ifdef __cplusplus
- }
- #endif
- #endif