Worked on config file handler, added all functions
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit

This commit is contained in:
2022-06-07 09:54:52 +02:00
parent c413d90b88
commit 74b38a6d06
8 changed files with 236 additions and 0 deletions

View File

@ -24,6 +24,8 @@
#include <test/testtasks/TestTask.h>
#endif
#include "GlobalConfigHandler.h"
void Factory::setStaticFrameworkObjectIds() {
PusServiceBase::packetSource = objects::PUS_PACKET_DISTRIBUTOR;
PusServiceBase::packetDestination = objects::TM_FUNNEL;
@ -44,4 +46,5 @@ void ObjectFactory::produce(void* args) {
ObjectFactory::produceGenericObjects();
new TestTask(objects::TEST_TASK);
new GlobalConfigHandler(objects::CONFIG_TEST,"/path/to/JSON.config");
}