added config for old stuff

This commit is contained in:
Robin Müller 2020-11-02 14:08:45 +01:00 committed by Robin.Mueller
parent 77c8a6c198
commit b8d7bc2a72
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,5 @@
#include "dataPoolInit.h"
void datapool::dataPoolInit(std::map<uint32_t, PoolEntryIF*>** poolMap) {
}

View File

@ -0,0 +1,13 @@
#ifndef CONFIG_CDATAPOOL_DATAPOOLINIT_H_
#define CONFIG_CDATAPOOL_DATAPOOLINIT_H_
#include <fsfw/datapool/DataPool.h>
namespace datapool{
void dataPoolInit(std::map<uint32_t, PoolEntryIF*>* * poolMap);
enum datapoolvariables {
NO_PARAMETER = 0,
};
}
#endif /* CONFIG_CDATAPOOL_DATAPOOLINIT_H_ */