ogma-core-1.15.0: templates/cfs/copilot/fsw/src/copilot_cfs_msg.h
/*******************************************************************************
** File:
** copilot_cfs_msg.h
**
** Purpose:
** Define COPILOT App Messages and info
**
** Notes:
**
**
*******************************************************************************/
#ifndef _copilot_cfs_msg_h_
#define _copilot_cfs_msg_h_
/*************************************************************************/
/*
** Type definition (generic "no arguments" command)
*/
typedef struct
{
CFE_MSG_CommandHeader_t CmdHeader;
} COPILOT_NoArgsCmd_t;
/*************************************************************************/
/*
** Type definition (COPILOT App housekeeping)
*/
typedef struct
{
CFE_MSG_TelemetryHeader_t TlmHeader;
uint8 copilot_command_error_count;
uint8 copilot_command_count;
uint8 spare[2];
} copilot_hk_tlm_t ;
#endif /* _copilot_cfs_msg_h_ */
/************************/
/* End of File Comment */
/************************/