start CFDP source handler
This commit is contained in:
parent
8da89eba80
commit
7add782470
2
.gitignore
vendored
2
.gitignore
vendored
@ -1,5 +1,5 @@
|
|||||||
# PyCharm and CLion
|
# PyCharm and CLion
|
||||||
/.idea/*
|
.idea/*
|
||||||
!/.idea/runConfigurations
|
!/.idea/runConfigurations
|
||||||
!/.idea/cmake.xml
|
!/.idea/cmake.xml
|
||||||
!/.idea/codeStyles
|
!/.idea/codeStyles
|
||||||
|
@ -1 +1,4 @@
|
|||||||
#include "SourceHandler.h"
|
#include "SourceHandler.h"
|
||||||
|
|
||||||
|
SourceHandler::SourceHandler(SourceHandlerParams params) {
|
||||||
|
}
|
||||||
|
@ -1,6 +1,14 @@
|
|||||||
#ifndef FSFW_CFDP_CFDPSOURCEHANDLER_H
|
#ifndef FSFW_CFDP_CFDPSOURCEHANDLER_H
|
||||||
#define FSFW_CFDP_CFDPSOURCEHANDLER_H
|
#define FSFW_CFDP_CFDPSOURCEHANDLER_H
|
||||||
|
|
||||||
class SourceHandler {};
|
struct SourceHandlerParams {
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
class SourceHandler {
|
||||||
|
public:
|
||||||
|
SourceHandler(SourceHandlerParams params);
|
||||||
|
private:
|
||||||
|
};
|
||||||
|
|
||||||
#endif // FSFW_CFDP_CFDPSOURCEHANDLER_H
|
#endif // FSFW_CFDP_CFDPSOURCEHANDLER_H
|
||||||
|
@ -32,7 +32,7 @@ void Factory::produceFrameworkObjects(void* args) {
|
|||||||
setStaticFrameworkObjectIds();
|
setStaticFrameworkObjectIds();
|
||||||
new EventManager(objects::EVENT_MANAGER, 120);
|
new EventManager(objects::EVENT_MANAGER, 120);
|
||||||
new HealthTable(objects::HEALTH_TABLE);
|
new HealthTable(objects::HEALTH_TABLE);
|
||||||
new InternalErrorReporter(objects::INTERNAL_ERROR_REPORTER);
|
new InternalErrorReporter(objects::INTERNAL_ERROR_REPORTER, 20, false, 5.0);
|
||||||
|
|
||||||
{
|
{
|
||||||
PoolManager::LocalPoolConfig poolCfg = {{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}};
|
PoolManager::LocalPoolConfig poolCfg = {{100, 16}, {50, 32}, {25, 64}, {15, 128}, {5, 1024}};
|
||||||
|
Loading…
Reference in New Issue
Block a user