2021-06-08 13:36:08 +02:00
|
|
|
#include "ObjectFactory.h"
|
|
|
|
#include "OBSWConfig.h"
|
|
|
|
#include <bsp_hosted/fsfwconfig/objects/systemObjectList.h>
|
|
|
|
#include <bsp_hosted/fsfwconfig/tmtc/apid.h>
|
|
|
|
#include <bsp_hosted/fsfwconfig/tmtc/pusIds.h>
|
|
|
|
|
2021-11-19 14:13:46 +01:00
|
|
|
#include "example/test/FsfwTestTask.h"
|
2021-10-17 23:28:24 +02:00
|
|
|
#include "example/utility/TmFunnel.h"
|
|
|
|
#include "example/core/GenericFactory.h"
|
2021-06-08 13:36:08 +02:00
|
|
|
|
|
|
|
#include <fsfw/monitoring/MonitoringMessageContent.h>
|
|
|
|
#include <fsfw/storagemanager/PoolManager.h>
|
|
|
|
#include <fsfw/datapoollocal/LocalDataPoolManager.h>
|
2021-06-17 12:04:54 +02:00
|
|
|
#include <fsfw/tmtcpacket/pus/tm.h>
|
2021-06-08 13:36:08 +02:00
|
|
|
#include <fsfw/tmtcservices/CommandingServiceBase.h>
|
|
|
|
#include <fsfw/tmtcservices/PusServiceBase.h>
|
|
|
|
|
2021-09-28 16:04:16 +02:00
|
|
|
#if OBSW_USE_TCP_SERVER == 0
|
2021-06-08 13:36:08 +02:00
|
|
|
#include <fsfw/osal/common/UdpTcPollingTask.h>
|
|
|
|
#include <fsfw/osal/common/UdpTmTcBridge.h>
|
2021-09-28 16:04:16 +02:00
|
|
|
#else
|
|
|
|
#include "fsfw/osal/common/TcpTmTcServer.h"
|
|
|
|
#include "fsfw/osal/common/TcpTmTcBridge.h"
|
|
|
|
#endif
|
2021-06-08 13:36:08 +02:00
|
|
|
|
|
|
|
void ObjectFactory::produce(void* args) {
|
|
|
|
Factory::setStaticFrameworkObjectIds();
|
|
|
|
|
|
|
|
#if OBSW_ADD_CORE_COMPONENTS == 1
|
|
|
|
{
|
|
|
|
LocalPool::LocalPoolConfig poolCfg = {
|
|
|
|
{16, 100}, {32, 50}, {64, 25}, {128,15}, {1024, 5}
|
|
|
|
};
|
|
|
|
new PoolManager(objects::TC_STORE, poolCfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
LocalPool::LocalPoolConfig poolCfg = {
|
|
|
|
{16, 100}, {32, 50}, {64, 25}, {128,15}, {1024, 5}
|
|
|
|
};
|
|
|
|
new PoolManager(objects::TM_STORE, poolCfg);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
LocalPool::LocalPoolConfig poolCfg = {
|
|
|
|
{16, 100}, {32, 50}, {64, 25}, {128,15}, {1024, 5}
|
|
|
|
};
|
|
|
|
new PoolManager(objects::IPC_STORE, poolCfg);
|
|
|
|
}
|
|
|
|
|
2021-09-28 16:04:16 +02:00
|
|
|
// TMTC Reception via TCP/IP socket
|
|
|
|
#if OBSW_USE_TCP_SERVER == 0
|
|
|
|
auto tmtcBridge = new UdpTmTcBridge(objects::TCPIP_TMTC_BRIDGE, objects::CCSDS_DISTRIBUTOR);
|
|
|
|
tmtcBridge->setMaxNumberOfPacketsStored(50);
|
|
|
|
sif::info << "Opening UDP TMTC server on port " << tmtcBridge->getUdpPort() << std::endl;
|
|
|
|
new UdpTcPollingTask(objects::TCPIP_TMTC_POLLING_TASK, objects::TCPIP_TMTC_BRIDGE);
|
|
|
|
#else
|
|
|
|
auto tmtcBridge = new TcpTmTcBridge(objects::TCPIP_TMTC_BRIDGE, objects::CCSDS_DISTRIBUTOR);
|
|
|
|
tmtcBridge->setMaxNumberOfPacketsStored(50);
|
|
|
|
auto tmtcServer = new TcpTmTcServer(objects::TCPIP_TMTC_POLLING_TASK, objects::TCPIP_TMTC_BRIDGE);
|
2021-09-28 16:44:11 +02:00
|
|
|
sif::info << "Opening TCP TMTC server on port " << tmtcServer->getTcpPort() << std::endl;
|
2021-09-28 16:04:16 +02:00
|
|
|
#endif
|
2021-06-08 13:36:08 +02:00
|
|
|
|
|
|
|
#endif /* OBSW_ADD_CORE_COMPONENTS == 1 */
|
|
|
|
|
2021-06-30 10:00:20 +02:00
|
|
|
bool periodicEvent = false;
|
|
|
|
#if OBSW_TASK_PERIODIC_EVENT == 1
|
|
|
|
periodicEvent = true;
|
|
|
|
#endif
|
2021-11-19 14:13:46 +01:00
|
|
|
new FsfwTestTask(objects::TEST_TASK, periodicEvent);
|
2021-06-08 13:36:08 +02:00
|
|
|
|
|
|
|
ObjectFactory::produceGenericObjects();
|
|
|
|
}
|