eive-obsw/mission/tmtc/TmStore.cpp
Robin Mueller d5867f104f
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
continue tm store
2022-10-25 18:20:21 +02:00

15 lines
375 B
C++

#include "TmStore.h"
#include <mission/memory/SdCardMountedIF.h>
using namespace returnvalue;
TmStore::TmStore(object_id_t objectId, SdCardMountedIF& sdcMan)
: SystemObject(objectId), sdcMan(sdcMan) {}
ReturnValue_t TmStore::passPacket(PusTmReader& reader) {
return returnvalue::OK;
}
MessageQueueId_t TmStore::getCommandQueue() { return MessageQueueIF::NO_QUEUE; }