packages feed

ogma-core-1.15.0: templates/cfs/copilot/fsw/src/copilot_cfs.h

/*******************************************************************************
** File: copilot_app.h
**
** Purpose:
**   This file is main hdr file for the COPILOT application.
**
**
*******************************************************************************/

#ifndef _copilot_app_h_
#define _copilot_app_h_

/*
** Required header files.
*/
#include "cfe.h"
#include "cfe_error.h"
#include "cfe_evs.h"
#include "cfe_sb.h"
#include "cfe_es.h"

#include <string.h>
#include <errno.h>
#include <unistd.h>

/***********************************************************************/

#define COPILOT_PIPE_DEPTH                     32

/************************************************************************
** Type Definitions
*************************************************************************/

/****************************************************************************/
/*
** Local function prototypes.
**
** Note: Except for the entry point (COPILOT_AppMain), these
**       functions are not called from any other source module.
*/
void COPILOT_AppMain(void);
CFE_Status_t COPILOT_AppInit(void);
void COPILOT_ProcessCommandPacket(void);
{{#msgCases}}
void COPILOT_Process{{msgInfoDesc}}(void);
{{/msgCases}}
void COPILOT_ResetCounters(void);

bool COPILOT_VerifyCmdLength(CFE_MSG_Message_t *msg, size_t ExpectedLength);

#endif /* _copilot_app_h_ */