eive-obsw/mission/tmtc/TmStoreBackend.h
Robin Mueller e897fb63d8
All checks were successful
EIVE/eive-obsw/pipeline/head This commit looks good
use CSB backend instead
2022-10-24 10:26:00 +02:00

15 lines
400 B
C++

#ifndef MISSION_TMTC_TMSTOREBACKEND_H_
#define MISSION_TMTC_TMSTOREBACKEND_H_
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
class TmStoreBackend : public AcceptsTelemetryIF {
public:
[[nodiscard]] const char* getName() const override;
[[nodiscard]] MessageQueueId_t getReportReceptionQueue(uint8_t virtualChannel) const override;
private:
};
#endif /* MISSION_TMTC_TMSTOREBACKEND_H_ */