fsfw/unittests/testcfg/ipc/MissionMessageTypes.h

23 lines
560 B
C
Raw Normal View History

2020-10-20 17:11:23 +02:00
#ifndef CONFIG_IPC_MISSIONMESSAGETYPES_H_
#define CONFIG_IPC_MISSIONMESSAGETYPES_H_
#include <fsfw/ipc/FwMessageTypes.h>
class CommandMessage;
/**
* Custom command messages are specified here.
* Most messages needed to use FSFW are already located in
* <fsfw/ipc/FwMessageTypes.h>
* @param message Generic Command Message
*/
2022-02-02 10:29:30 +01:00
namespace messagetypes {
2020-10-20 17:11:23 +02:00
enum MESSAGE_TYPE {
2022-02-02 10:29:30 +01:00
MISSION_MESSAGE_TYPE_START = FW_MESSAGES_COUNT,
2020-10-20 17:11:23 +02:00
};
void clearMissionMessage(CommandMessage* message);
2022-02-02 10:29:30 +01:00
} // namespace messagetypes
2020-10-20 17:11:23 +02:00
#endif /* CONFIG_IPC_MISSIONMESSAGETYPES_H_ */