Skip to content
Snippets Groups Projects
Commit 040f7211 authored by fxk8y's avatar fxk8y :spider:
Browse files

Bugfixes

parent 3443598f
No related branches found
No related tags found
No related merge requests found
...@@ -1030,7 +1030,7 @@ namespace SiliconTorch { ...@@ -1030,7 +1030,7 @@ namespace SiliconTorch {
} }
i64 getSignedInt(const std::string& nameSpace, const std::string& key, i64 defaultValue) { i64 NVSExplorer::getSignedInt(const std::string& nameSpace, const std::string& key, i64 defaultValue) {
// Lets first test & evaluate the other function before duplication……… // Lets first test & evaluate the other function before duplication………
...@@ -1038,7 +1038,7 @@ namespace SiliconTorch { ...@@ -1038,7 +1038,7 @@ namespace SiliconTorch {
} }
u64 getUnsignedInt(const std::string& nameSpace, const std::string& key, u64 defaultValue) { u64 NVSExplorer::getUnsignedInt(const std::string& nameSpace, const std::string& key, u64 defaultValue) {
u64 value = defaultValue; u64 value = defaultValue;
nvs_type_t entryType = NVS_TYPE_ANY; nvs_type_t entryType = NVS_TYPE_ANY;
...@@ -1084,7 +1084,14 @@ namespace SiliconTorch { ...@@ -1084,7 +1084,14 @@ namespace SiliconTorch {
} }
bool setUnsignedInt(const std::string& nameSpace, const std::string& key, u64 value, nvs_type_t entryType) { bool NVSExplorer::setSignedInt(const std::string& nameSpace, const std::string& key, i64 value, nvs_type_t entryType) {
// TODO: implementation!
return false;
}
bool NVSExplorer::setUnsignedInt(const std::string& nameSpace, const std::string& key, u64 value, nvs_type_t entryType) {
bool result = false; bool result = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment