2020-10-29 12:23:27 +01:00
|
|
|
#ifndef HOSTED_CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
|
|
#define HOSTED_CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
|
|
|
2020-10-30 14:21:31 +01:00
|
|
|
#include <fsfw/datapool/DataPool.h>
|
2020-10-29 12:23:27 +01:00
|
|
|
#include <fsfw/datapool/PoolEntryIF.h>
|
|
|
|
#include <map>
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
|
|
|
|
namespace datapool {
|
|
|
|
void dataPoolInit(std::map<uint32_t, PoolEntryIF*> * poolMap);
|
|
|
|
|
|
|
|
enum datapoolvariables {
|
|
|
|
NO_PARAMETER = 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CDATAPOOL_DATAPOOLINIT_H_ */
|