27 lines
757 B
C
27 lines
757 B
C
|
#ifndef BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_
|
||
|
#define BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_
|
||
|
|
||
|
#include "mission/memory/NVMParameterBase.h"
|
||
|
#include <nlohmann/json.hpp>
|
||
|
|
||
|
#include <filesystem>
|
||
|
|
||
|
class DummyParameter: public NVMParameterBase {
|
||
|
public:
|
||
|
static constexpr char DUMMY_KEY_PARAM_1[] = "dummy1";
|
||
|
static constexpr char DUMMY_KEY_PARAM_2[] = "dummy2";
|
||
|
|
||
|
DummyParameter(std::string mountPrefix, std::string jsonFileName):
|
||
|
NVMParameterBase(mountPrefix + "/conf/" + jsonFileName),
|
||
|
mountPrefix(mountPrefix) {
|
||
|
insertValue(DUMMY_KEY_PARAM_1, 1);
|
||
|
insertValue(DUMMY_KEY_PARAM_2, "blablub");
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
std::string mountPrefix;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif /* BSP_Q7S_CORE_NVMPARAMS_PARAMETERDEFINITIONS_H_ */
|