1
0
forked from fsfw/fsfw

updated defaultcfg

This commit is contained in:
2020-12-30 22:56:46 +01:00
parent 426514b9a2
commit c4fb1f49d8
6 changed files with 26 additions and 37 deletions

View File

@ -0,0 +1,17 @@
#ifndef FACTORY_H_
#define FACTORY_H_
#include <fsfw/objectmanager/SystemObjectIF.h>
#include <cstddef>
namespace Factory {
/**
* @brief Creates all SystemObject elements which are persistent
* during execution.
*/
void produceFsfwObjects();
void setStaticFrameworkObjectIds();
}
#endif /* FACTORY_H_ */