25 lines
718 B
C
25 lines
718 B
C
#ifndef __PANEL_DEAL_H__
|
|
#define __PANEL_DEAL_H__
|
|
|
|
|
|
|
|
void chip_main();
|
|
void chip_main_reset();
|
|
unsigned int get_lrc(unsigned char * send_data,int len);
|
|
void rsp_ok_common(unsigned char rsp_ok_data);
|
|
void rsp_ok_data(unsigned char * rev_data,int len);
|
|
void rsp_ok(void);
|
|
void rsp_err(unsigned char type,unsigned char error);
|
|
void rsp_err_data(unsigned char type,unsigned char * buff,int len);
|
|
int chip_request(unsigned char tag,unsigned char * send_data,int len,unsigned char * ack);
|
|
void serialSendRsp();
|
|
void rsp_ok_common(unsigned char response_data);
|
|
void Frame_Menu_Manage_LMKIssue();
|
|
void Frame_Menu_Manage_LMKIssue1();
|
|
void Frame_Menu_Manage_LMKIssue2();
|
|
void Frame_Menu_Manage_LMKIssue3();
|
|
|
|
|
|
#endif
|
|
|