From 083b4e61ade602e8b66834748850fd8d50b7539d Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 29 Apr 2024 13:23:08 +0200 Subject: [PATCH] important bugfix --- linux/payload/PlocMpsocSpecialComHelper.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/linux/payload/PlocMpsocSpecialComHelper.cpp b/linux/payload/PlocMpsocSpecialComHelper.cpp index cbb13958..220735ef 100644 --- a/linux/payload/PlocMpsocSpecialComHelper.cpp +++ b/linux/payload/PlocMpsocSpecialComHelper.cpp @@ -6,6 +6,7 @@ #include #include +#include "fsfw/serviceinterface/ServiceInterfaceStream.h" #include "fsfw/tmtcpacket/ccsds/SpacePacketReader.h" #include "linux/payload/MpsocCommunication.h" #include "linux/payload/plocMpsocHelpers.h" @@ -396,6 +397,8 @@ ReturnValue_t PlocMpsocSpecialComHelper::handleTmReception() { return result; } if (result == MpsocCommunication::PACKET_RECEIVED) { + // Need to convert this, we are faking a synchronous API here. + result = returnvalue::OK; break; } usleep(usleepDelay);