fsfw-example-hosted/bsp_hosted/fsfwconfig/ipc/missionMessageTypes.cpp
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

13 lines
308 B
C++

#include "missionMessageTypes.h"
#include <fsfw/ipc/CommandMessage.h>
#include <fsfw/ipc/CommandMessageCleaner.h>
void messagetypes::clearMissionMessage(CommandMessage* message) {
switch ((message->getMessageType())) {
default:
message->setCommand(CommandMessage::CMD_NONE);
break;
}
}