24 lines
423 B
C
24 lines
423 B
C
#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;/*区域详情界面页码*/
|
|
}gui_tjc_hmi_page_t;
|
|
|
|
typedef struct
|
|
{
|
|
gui_tjc_hmi_page_t page;
|
|
void (*init)(void);
|
|
}gui_tjc_hmi_t;
|
|
|
|
extern gui_tjc_hmi_t tjc_hmi;
|
|
|
|
#endif
|