update
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,26 @@
|
||||
#ifndef _GUI_TJC_HMI_H_
|
||||
#define _GUI_TJC_HMI_H_
|
||||
|
||||
#include "main.h"
|
||||
|
||||
/*页码*/
|
||||
typedef struct
|
||||
{
|
||||
u8 main_index;/*主界面页码*/
|
||||
u8 deliniter_main_index;/*主界面选中区域的全局索引*/
|
||||
u8 real_alarm_index;/*实时报警界面页码*/
|
||||
u8 detail_main_index;/*区域详情界面页码*/
|
||||
u8 device_config_index;/*设备配置界面页码*/
|
||||
u8 history_alarm_index;/*历史报警界面页码*/
|
||||
}gui_tjc_hmi_page_t;
|
||||
|
||||
typedef struct
|
||||
{
|
||||
gui_tjc_hmi_page_t page;
|
||||
u8 password[4];
|
||||
void (*init)(void);
|
||||
}gui_tjc_hmi_t;
|
||||
|
||||
extern gui_tjc_hmi_t tjc_hmi;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user