23 lines
291 B
C
23 lines
291 B
C
#ifndef _GUI_TJC_HMI_H_
|
|
#define _GUI_TJC_HMI_H_
|
|
|
|
#include "main.h"
|
|
|
|
/*Ò³Âë*/
|
|
typedef struct
|
|
{
|
|
u8 main_index;
|
|
u8 deliniter_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
|