fsfw-example-hosted/bsp_hosted/fsfwconfig/ipc/missionMessageTypes.h
Robin Mueller d2337a769c
All checks were successful
fsfw/fsfw example hosted/pipeline/head This commit looks good
apply auto-formatter
2022-05-05 20:55:48 +02:00

20 lines
532 B
C++

#ifndef FSFWCONFIG_IPC_MISSIONMESSAGETYPES_H_
#define FSFWCONFIG_IPC_MISSIONMESSAGETYPES_H_
#include <fsfw/ipc/FwMessageTypes.h>
class CommandMessage;
namespace messagetypes {
/* First type must have number MESSAGE_TYPE::FW_MESSAGES_COUNT! */
/* Remember to add new message types to the clearMissionMessage function below! */
enum MISSION_MESSAGE_TYPE {
COSTUM_MESSAGE = FW_MESSAGES_COUNT,
};
void clearMissionMessage(CommandMessage* message);
} // namespace messagetypes
#endif /* FSFWCONFIG_IPC_MISSIONMESSAGETYPES_H_ */