📄 fvmi.hit
字号:
#ifndef FVMI_HIT#define FVMI_HIT/******************************************************************************** Structure declaration*******************************************************************************/typedef struct st_SendInfo { t_MsgHeader * p_MsgAddress; /* Address of message to send */ t_OperationType v_OpType; /* Operation type of message to send */ MC_PCC_FILL_STRUCT2 } t_SendInfo;typedef struct st_AnswerInfo { t_MsgHeader * p_MsgAddress; /* Address of received message */ s32 v_Status; /* Status of received message after translation */ } t_AnswerInfo;typedef struct st_TaskInfo { t_MsgHeader * p_MsgAddress; /* Address of received message */ } t_TaskInfo;typedef struct st_GenericType { t_MsgHeader s_MsgHeader; /* Message header */ u16 v_CmdId; /* Command identifier */ u8 v_ErrorCode; /* Code of the error detected by FVM (WARNING: this field only exists for an error message) */ MC_PCC_FILL_STRUCT1 } t_GenericType;/******************************************************************************** Global variable declarations*******************************************************************************/#if defined (FVMI05COMMON_C)#define GLOBAL #else#define GLOBAL extern#endifGLOBAL t_TaskInfo a_TaskInfo[RTK_INIT_TASK_NB]; /* Intercommunication table between FVMI process and called functions *//******************************************************************************/#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -