2020-11-20 18:10:39 +01:00
|
|
|
#include "ObjectFactory.h"
|
|
|
|
|
2020-11-20 18:27:07 +01:00
|
|
|
#include <OBSWConfig.h>
|
2020-12-14 13:03:47 +01:00
|
|
|
#include <objects/systemObjectList.h>
|
2020-11-20 18:27:07 +01:00
|
|
|
#include <tmtc/apid.h>
|
|
|
|
#include <tmtc/pusIds.h>
|
2020-11-20 18:10:39 +01:00
|
|
|
|
|
|
|
#include <fsfw/tmtcservices/CommandingServiceBase.h>
|
|
|
|
#include <fsfw/tmtcservices/PusServiceBase.h>
|
|
|
|
|
|
|
|
#include <mission/core/GenericFactory.h>
|
|
|
|
#include <mission/utility/TmFunnel.h>
|
|
|
|
|
2021-04-01 10:37:34 +02:00
|
|
|
#include <fsfw/osal/common/UdpTcPollingTask.h>
|
|
|
|
#include <fsfw/osal/common/UdpTmTcBridge.h>
|
2020-11-20 18:10:39 +01:00
|
|
|
|
|
|
|
#include <fsfw/tmtcpacket/pus/TmPacketStored.h>
|
|
|
|
|
|
|
|
|
|
|
|
#if OBSW_ADD_TEST_CODE == 1
|
|
|
|
#include <test/testtasks/TestTask.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void Factory::setStaticFrameworkObjectIds(){
|
|
|
|
PusServiceBase::packetSource = objects::PUS_PACKET_DISTRIBUTOR;
|
|
|
|
PusServiceBase::packetDestination = objects::TM_FUNNEL;
|
|
|
|
|
|
|
|
CommandingServiceBase::defaultPacketSource = objects::PUS_PACKET_DISTRIBUTOR;
|
|
|
|
CommandingServiceBase::defaultPacketDestination = objects::TM_FUNNEL;
|
|
|
|
|
|
|
|
TmFunnel::downlinkDestination = objects::UDP_BRIDGE;
|
|
|
|
// No storage object for now.
|
|
|
|
TmFunnel::storageDestination = objects::NO_OBJECT;
|
|
|
|
|
|
|
|
VerificationReporter::messageReceiver = objects::PUS_SERVICE_1_VERIFICATION;
|
2021-05-17 16:10:53 +02:00
|
|
|
TmPacketBase::timeStamperId = objects::TIME_STAMPER;
|
2020-11-20 18:10:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ObjectFactory::produce(){
|
|
|
|
Factory::setStaticFrameworkObjectIds();
|
|
|
|
ObjectFactory::produceGenericObjects();
|
|
|
|
|
2021-05-17 16:10:53 +02:00
|
|
|
new UdpTmTcBridge(objects::UDP_BRIDGE, objects::CCSDS_PACKET_DISTRIBUTOR);
|
2021-04-01 10:37:34 +02:00
|
|
|
new UdpTcPollingTask(objects::UDP_POLLING_TASK, objects::UDP_BRIDGE);
|
2020-11-20 18:10:39 +01:00
|
|
|
|
|
|
|
}
|