eive-obsw/mission/utility/TmFunnel.h

50 lines
1.4 KiB
C
Raw Normal View History

2020-09-16 16:22:36 +02:00
#ifndef MISSION_UTILITY_TMFUNNEL_H_
#define MISSION_UTILITY_TMFUNNEL_H_
2022-01-17 15:58:27 +01:00
#include <fsfw/ipc/MessageQueueIF.h>
2020-09-16 16:22:36 +02:00
#include <fsfw/objectmanager/SystemObject.h>
#include <fsfw/tasks/ExecutableObjectIF.h>
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
#include <fsfw/tmtcservices/TmTcMessage.h>
2022-01-17 15:58:27 +01:00
namespace Factory {
2020-09-16 16:22:36 +02:00
void setStaticFrameworkObjectIds();
}
/**
* @brief TM Recipient.
* @details
* Main telemetry receiver. All generated telemetry is funneled into
* this object.
* @ingroup utility
* @author J. Meier
*/
2022-01-17 15:58:27 +01:00
class TmFunnel : public AcceptsTelemetryIF, public ExecutableObjectIF, public SystemObject {
friend void(Factory::setStaticFrameworkObjectIds)();
public:
2022-03-26 14:08:34 +01:00
TmFunnel(object_id_t objectId, uint32_t messageDepth = 20, uint8_t reportReceptionVc = 0);
2022-01-17 15:58:27 +01:00
virtual ~TmFunnel();
virtual MessageQueueId_t getReportReceptionQueue(uint8_t virtualChannel = 0) override;
virtual ReturnValue_t performOperation(uint8_t operationCode = 0) override;
virtual ReturnValue_t initialize() override;
protected:
static object_id_t downlinkDestination;
static object_id_t storageDestination;
private:
2022-03-26 14:08:34 +01:00
uint32_t messageDepth = 0;
uint8_t reportReceptionVc = 0;
2022-01-17 15:58:27 +01:00
uint16_t sourceSequenceCount = 0;
MessageQueueIF* tmQueue = nullptr;
MessageQueueIF* storageQueue = nullptr;
StorageManagerIF* tmStore = nullptr;
2022-03-26 14:08:34 +01:00
2022-01-17 15:58:27 +01:00
ReturnValue_t handlePacket(TmTcMessage* message);
2020-09-16 16:22:36 +02:00
};
#endif /* MISSION_UTILITY_TMFUNNEL_H_ */