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.
30 lines
473 B
30 lines
473 B
10 months ago
|
#ifndef _APP_TASK_SCREEN_SAVE_H
|
||
|
#define _APP_TASK_SCREEN_SAVE_H
|
||
|
|
||
|
#include "../bsp/TTSSbsp/bsp_config.h"
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
U8 head[2];
|
||
|
U8 available;
|
||
|
U16 kgx10_out;
|
||
|
U8 tail[2];
|
||
|
|
||
|
}SCREEN_SAVE;
|
||
|
|
||
|
|
||
|
typedef struct _s_task_screen_save
|
||
|
{
|
||
|
TS_task task;
|
||
|
}S_TASK_SCREEN_SAVE;
|
||
|
|
||
|
extern S_TASK_SCREEN_SAVE _s_task_screen_save;
|
||
|
|
||
|
extern void L3_task_screen_save_init(void);
|
||
|
extern void L3_task_screen_save_handler(S_TASK_Bed_ALARM *s);
|
||
|
|
||
|
|
||
|
void screen_save_push(U16 weight);
|
||
|
|
||
|
|
||
|
#endif
|