bugfixes in pdec handler parameter commands

This commit is contained in:
Jakob Meier
2023-02-23 15:19:48 +01:00
29 changed files with 307 additions and 149 deletions

View File

@ -31,7 +31,7 @@ class NVMParameterBase {
virtual ReturnValue_t writeJsonFile();
void setFullName(std::string fullName);
virtual void setFullName(std::string fullName);
std::string getFullName() const;
template <typename T>
@ -69,7 +69,7 @@ inline ReturnValue_t NVMParameterBase::insertValue(std::string key, T value) {
template <typename T>
inline ReturnValue_t NVMParameterBase::setValue(std::string key, T value) {
json[key] = value;
json[key] = value;
return returnvalue::OK;
}