This commit is contained in:
32
mission/tmtc/TmStore.cpp
Normal file
32
mission/tmtc/TmStore.cpp
Normal file
@ -0,0 +1,32 @@
|
||||
#include "TmStore.h"
|
||||
|
||||
using namespace returnvalue;
|
||||
|
||||
const char* TmStore::getName() const { return "TM Store Backend"; }
|
||||
|
||||
MessageQueueId_t TmStore::getReportReceptionQueue(uint8_t virtualChannel) const {
|
||||
return MessageQueueIF::NO_QUEUE;
|
||||
}
|
||||
|
||||
MessageQueueId_t TmStore::getCommandQueue() const { return MessageQueueIF::NO_QUEUE; }
|
||||
|
||||
TmStoreBackendIF* TmStore::getBackend() const { return nullptr; }
|
||||
|
||||
ReturnValue_t TmStore::packetRetrieved(PusTmReader* packet, uint32_t address) { return OK; }
|
||||
|
||||
void TmStore::noMorePacketsInStore() {}
|
||||
|
||||
void TmStore::handleRetrievalFailed(ReturnValue_t errorCode, uint32_t parameter1,
|
||||
uint32_t parameter2) {}
|
||||
|
||||
ReturnValue_t TmStore::fetchPackets(ApidSsc start, ApidSsc end) { return OK; }
|
||||
|
||||
ReturnValue_t TmStore::deletePackets(ApidSsc upTo) { return OK; }
|
||||
|
||||
ReturnValue_t TmStore::checkPacket(SpacePacketReader* tmPacket) { return OK; }
|
||||
|
||||
void TmStore::setEnabled(bool enabled) {}
|
||||
|
||||
void TmStore::resetDownlinkedPacketCount() {}
|
||||
|
||||
ReturnValue_t TmStore::setDumpTarget(object_id_t dumpTarget) { return OK; }
|
Reference in New Issue
Block a user