Persistent TM Store #320
@ -57,6 +57,11 @@ ReturnValue_t PusTmFunnel::handlePacket(TmTcMessage &message) {
|
||||
packet.updateErrorControl();
|
||||
|
||||
if (sdcMan.isSdCardUsable(std::nullopt)) {
|
||||
if (not storesInitialized) {
|
||||
miscStore.updateBaseDir();
|
||||
miscStore.updateCurrentTimestamp();
|
||||
storesInitialized = true;
|
||||
}
|
||||
miscStore.passPacket(packet);
|
||||
}
|
||||
|
||||
@ -94,7 +99,10 @@ ReturnValue_t PusTmFunnel::handlePacket(TmTcMessage &message) {
|
||||
const char *PusTmFunnel::getName() const { return "PUS TM Funnel"; }
|
||||
|
||||
ReturnValue_t PusTmFunnel::initialize() {
|
||||
if (not storesInitialized and sdcMan.isSdCardUsable(std::nullopt)) {
|
||||
miscStore.updateBaseDir();
|
||||
miscStore.updateCurrentTimestamp();
|
||||
storesInitialized = true;
|
||||
}
|
||||
return returnvalue::OK;
|
||||
}
|
||||
|
@ -36,6 +36,7 @@ class PusTmFunnel : public TmFunnelBase {
|
||||
private:
|
||||
uint16_t sourceSequenceCount = 0;
|
||||
TimeReaderIF &timeReader;
|
||||
bool storesInitialized = false;
|
||||
TmStore miscStore;
|
||||
SdCardMountedIF &sdcMan;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user