2020-11-02 14:08:45 +01:00
|
|
|
#ifndef CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
|
|
#define CONFIG_CDATAPOOL_DATAPOOLINIT_H_
|
|
|
|
|
|
|
|
#include <fsfw/datapool/DataPool.h>
|
|
|
|
|
|
|
|
namespace datapool{
|
2020-11-02 14:20:15 +01:00
|
|
|
void dataPoolInit(std::map<uint32_t, PoolEntryIF*>* poolMap);
|
2020-11-02 14:08:45 +01:00
|
|
|
|
|
|
|
enum datapoolvariables {
|
|
|
|
NO_PARAMETER = 0,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_CDATAPOOL_DATAPOOLINIT_H_ */
|