//////////////////////////////////////////////////////////////////////////// ///@copyright Copyright (c) 2018, 传控科技 All rights reserved. ///------------------------------------------------------------------------- /// @file bsp_drv.h /// @brief bsp @ driver config ///------------------------------------------------------------------------- /// @version 1.0 /// @author CC /// @date 20180331 /// @note cc_AS_stc02 ////////////////////////////////////////////////////////////////////////////// #ifndef _APP_TASK_LOW_POWER_H #define _APP_TASK_LOW_POWER_H #include "../ctask/task.h" #include "../clib/clib.h" typedef struct _s_task_low_power { U8 power_mode; U8 xd_mode; TS_task task; }S_TASK_LOW_POWER; extern S_TASK_LOW_POWER _s_task_low_power; extern void L3_task_low_power_init(void); extern void L3_task_low_power_handler(S_TASK_LOW_POWER *s); #endif // #ifndef _APP_TASK_LOW_POWER_H