2022-11-02 10:26:45 +01:00
|
|
|
#include "TmFunnelBase.h"
|
|
|
|
|
2022-12-19 14:40:27 +01:00
|
|
|
#include <fsfw/tmtcservices/TmTcMessage.h>
|
|
|
|
|
2022-11-02 10:26:45 +01:00
|
|
|
#include "fsfw/ipc/QueueFactory.h"
|
|
|
|
|
2023-02-08 17:43:43 +01:00
|
|
|
TmFunnelBase::TmFunnelBase(FunnelCfg cfg)
|
2023-03-09 11:46:13 +01:00
|
|
|
: SystemObject(cfg.objectId),
|
|
|
|
name(cfg.name),
|
|
|
|
tmStore(cfg.tmStore),
|
|
|
|
ipcStore(cfg.ipcStore),
|
|
|
|
tmQueue(QueueFactory::instance()->createMessageQueue(cfg.tmMsgDepth)),
|
|
|
|
liveDemux(*tmQueue) {}
|
|
|
|
|
|
|
|
ReturnValue_t TmFunnelBase::demultiplexLivePackets(store_address_t origStoreId,
|
|
|
|
const uint8_t *tmData, size_t tmSize) {
|
|
|
|
return liveDemux.demultiplexPackets(tmStore, origStoreId, tmData, tmSize);
|
2022-11-02 10:26:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
TmFunnelBase::~TmFunnelBase() { QueueFactory::instance()->deleteMessageQueue(tmQueue); }
|
|
|
|
|
|
|
|
MessageQueueId_t TmFunnelBase::getReportReceptionQueue(uint8_t virtualChannel) const {
|
|
|
|
return tmQueue->getId();
|
|
|
|
}
|
|
|
|
|
2023-03-09 11:46:13 +01:00
|
|
|
void TmFunnelBase::addLiveDestination(const char *name,
|
|
|
|
const AcceptsTelemetryIF &downlinkDestination, uint8_t vcid) {
|
|
|
|
liveDemux.addDestination(name, downlinkDestination, vcid);
|
2022-12-19 14:40:27 +01:00
|
|
|
}
|