You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
956 B
34 lines
956 B
////////////////////////////////////////////////////////////////////////////
|
|
///@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_Bed_Alarm_H
|
|
#define _APP_TASK_Bed_Alarm_H
|
|
|
|
#include "../ctask/TTSS_task.h"
|
|
#include "../clib/c_lib.h"
|
|
// #include "task_screen.h"
|
|
|
|
|
|
typedef struct _s_task_low_power
|
|
{
|
|
TS_task task;
|
|
}S_TASK_Bed_ALARM;
|
|
|
|
extern S_TASK_Bed_ALARM _s_task_bed_alarm;
|
|
|
|
extern void L3_task_bed_alarm_init(void);
|
|
extern void L3_task_bed_alarm_handler(S_TASK_Bed_ALARM *s);
|
|
|
|
|
|
#endif // #ifndef _APP_TASK_Bed_Alarm_H
|
|
|
|
|