2022-06-23 12:05:56 +02:00
|
|
|
#ifndef MISSION_UTILITY_TMFUNNEL_H_
|
|
|
|
#define MISSION_UTILITY_TMFUNNEL_H_
|
|
|
|
|
|
|
|
#include <fsfw/ipc/MessageQueueIF.h>
|
|
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
|
|
|
#include <fsfw/tasks/ExecutableObjectIF.h>
|
2022-08-15 11:57:57 +02:00
|
|
|
#include <fsfw/timemanager/CdsShortTimeStamper.h>
|
2022-06-23 12:05:56 +02:00
|
|
|
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
|
|
|
|
#include <fsfw/tmtcservices/TmTcMessage.h>
|
|
|
|
|
|
|
|
namespace Factory {
|
|
|
|
void setStaticFrameworkObjectIds();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TM Recipient.
|
|
|
|
* @details
|
|
|
|
* Main telemetry receiver. All generated telemetry is funneled into
|
|
|
|
* this object.
|
|
|
|
* @ingroup utility
|
|
|
|
* @author J. Meier
|
|
|
|
*/
|
|
|
|
class TmFunnel : public AcceptsTelemetryIF, public ExecutableObjectIF, public SystemObject {
|
|
|
|
friend void(Factory::setStaticFrameworkObjectIds)();
|
|
|
|
|
|
|
|
public:
|
2022-08-15 17:25:16 +02:00
|
|
|
TmFunnel(object_id_t objectId, CdsShortTimeStamper& timeReader, uint32_t messageDepth = 20,
|
|
|
|
uint8_t reportReceptionVc = 0);
|
2022-06-23 12:05:56 +02:00
|
|
|
virtual ~TmFunnel();
|
|
|
|
|
2022-09-16 11:43:11 +02:00
|
|
|
const char* getName() const override;
|
|
|
|
MessageQueueId_t getReportReceptionQueue(uint8_t virtualChannel = 0) override;
|
|
|
|
ReturnValue_t performOperation(uint8_t operationCode = 0) override;
|
|
|
|
ReturnValue_t initialize() override;
|
2022-06-23 12:05:56 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static object_id_t downlinkDestination;
|
|
|
|
static object_id_t storageDestination;
|
|
|
|
|
|
|
|
private:
|
2022-08-15 11:57:57 +02:00
|
|
|
CdsShortTimeStamper& timeReader;
|
2022-06-23 12:05:56 +02:00
|
|
|
uint32_t messageDepth = 0;
|
|
|
|
uint8_t reportReceptionVc = 0;
|
|
|
|
uint16_t sourceSequenceCount = 0;
|
|
|
|
MessageQueueIF* tmQueue = nullptr;
|
|
|
|
MessageQueueIF* storageQueue = nullptr;
|
|
|
|
|
|
|
|
StorageManagerIF* tmStore = nullptr;
|
|
|
|
|
|
|
|
ReturnValue_t handlePacket(TmTcMessage* message);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* MISSION_UTILITY_TMFUNNEL_H_ */
|