eive-obsw/mission/tmtc/TmStore.cpp

15 lines
375 B
C++
Raw Normal View History

2022-10-24 10:57:30 +02:00
#include "TmStore.h"
2022-10-25 18:20:21 +02:00
#include <mission/memory/SdCardMountedIF.h>
2022-10-24 10:57:30 +02:00
using namespace returnvalue;
2022-10-25 18:20:21 +02:00
TmStore::TmStore(object_id_t objectId, SdCardMountedIF& sdcMan)
: SystemObject(objectId), sdcMan(sdcMan) {}
2022-10-24 10:57:30 +02:00
2022-10-25 18:20:21 +02:00
ReturnValue_t TmStore::passPacket(PusTmReader& reader) {
return returnvalue::OK;
2022-10-24 10:57:30 +02:00
}
2022-10-25 18:20:21 +02:00
MessageQueueId_t TmStore::getCommandQueue() { return MessageQueueIF::NO_QUEUE; }