From d2b15ee4faf41c811eaa52b5be6f7f930330b928 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 1 Aug 2022 11:11:30 +0200 Subject: [PATCH] updated TMTC router components --- example/core/GenericFactory.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/core/GenericFactory.cpp b/example/core/GenericFactory.cpp index 3f6296d..9438784 100644 --- a/example/core/GenericFactory.cpp +++ b/example/core/GenericFactory.cpp @@ -20,7 +20,7 @@ #include "fsfw/pus/Service5EventReporting.h" #include "fsfw/pus/Service8FunctionManagement.h" #include "fsfw/pus/Service9TimeManagement.h" -#include "fsfw/tcdistribution/CCSDSDistributor.h" +#include "fsfw/tcdistribution/CcsdsDistributor.h" #include "fsfw/tcdistribution/PusDistributor.h" #include "fsfw/timemanager/CdsShortTimeStamper.h" #include "fsfw/tmtcpacket/pus/tm.h" @@ -43,7 +43,7 @@ void ObjectFactory::produceGenericObjects() { auto* stamperAndReader = new CdsShortTimeStamper(objects::TIME_STAMPER); new VerificationReporter(nullptr); auto *ccsdsDistrib = - new CCSDSDistributor(apid::APID, objects::CCSDS_DISTRIBUTOR); + new CcsdsDistributor(apid::APID, objects::CCSDS_DISTRIBUTOR); new PusDistributor(apid::APID, objects::PUS_DISTRIBUTOR, ccsdsDistrib); new TmFunnel(*stamperAndReader, objects::TM_FUNNEL);