2022-10-21 11:51:44 +02:00
|
|
|
#ifndef FSFW_EXAMPLE_COMMON_PUSTMFUNNEL_H
|
|
|
|
#define FSFW_EXAMPLE_COMMON_PUSTMFUNNEL_H
|
|
|
|
|
|
|
|
#include <fsfw/ipc/MessageQueueIF.h>
|
|
|
|
#include <fsfw/objectmanager/SystemObject.h>
|
|
|
|
#include <fsfw/tasks/ExecutableObjectIF.h>
|
|
|
|
#include <fsfw/tmtcservices/AcceptsTelemetryIF.h>
|
|
|
|
#include <fsfw/tmtcservices/TmTcMessage.h>
|
2022-11-02 10:26:45 +01:00
|
|
|
#include <mission/tmtc/TmFunnelBase.h>
|
|
|
|
|
|
|
|
#include <vector>
|
2022-10-21 11:51:44 +02:00
|
|
|
|
|
|
|
#include "fsfw/timemanager/TimeReaderIF.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief TM Recipient.
|
|
|
|
* @details
|
2022-10-21 11:54:14 +02:00
|
|
|
* TODO: Add support for TM storage by using the (or a) LIVE flag provided by the CCSDS or Syrlinks
|
|
|
|
* handler. If we are in LIVE TM mode, forward TM to downlink destination directly. Otherwise,
|
|
|
|
* forward to TM storage backend which stores TMs into files.
|
2022-10-21 11:51:44 +02:00
|
|
|
* Main telemetry receiver. All generated telemetry is funneled into
|
|
|
|
* this object.
|
|
|
|
* @ingroup utility
|
2022-10-21 11:54:14 +02:00
|
|
|
* @author J. Meier, R. Mueller
|
2022-10-21 11:51:44 +02:00
|
|
|
*/
|
2022-11-02 10:26:45 +01:00
|
|
|
class PusTmFunnel : public TmFunnelBase {
|
2022-10-21 11:51:44 +02:00
|
|
|
public:
|
2022-11-02 10:26:45 +01:00
|
|
|
explicit PusTmFunnel(object_id_t objectId, TimeReaderIF &timeReader, StorageManagerIF &tmStore,
|
|
|
|
uint32_t messageDepth = 10);
|
2022-10-21 11:51:44 +02:00
|
|
|
[[nodiscard]] const char *getName() const override;
|
|
|
|
~PusTmFunnel() override;
|
|
|
|
|
|
|
|
ReturnValue_t performOperation(uint8_t operationCode);
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint16_t sourceSequenceCount = 0;
|
|
|
|
TimeReaderIF &timeReader;
|
2022-11-02 10:26:45 +01:00
|
|
|
|
2022-10-21 11:51:44 +02:00
|
|
|
ReturnValue_t handlePacket(TmTcMessage &message);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FSFW_EXAMPLE_COMMON_PUSTMFUNNEL_H
|