diff --git a/CLC-qthing/SiliconTorch/NVSExplorer.hpp b/CLC-qthing/SiliconTorch/NVSExplorer.hpp index c163447bbdabf43443272f313de666953fec81d8..ff3e941869a88e2812b4c85ab0a394af9f6b289c 100644 --- a/CLC-qthing/SiliconTorch/NVSExplorer.hpp +++ b/CLC-qthing/SiliconTorch/NVSExplorer.hpp @@ -65,18 +65,18 @@ namespace SiliconTorch { i64 getI64(const str& nameSpace, const str& key, i64 defaultValue = 0); - float getFloat(const str& nameSpace, const str& key); + float getFloat (const str& nameSpace, const str& key); double getDouble(const str& nameSpace, const str& key); - bool setFloat(const str& nameSpace, const str& key, float value); + bool setFloat (const str& nameSpace, const str& key, float value); bool setDouble(const str& nameSpace, const str& key, double value); // Gets the key regardless of its type in flash - i64 getSignedInt(const str& nameSpace, const str& key, i64 defaultValue = 0); + i64 getSignedInt (const str& nameSpace, const str& key, i64 defaultValue = 0); u64 getUnsignedInt(const str& nameSpace, const str& key, u64 defaultValue = 0); // TODO: ⮦ Both unimplemented atm ⮧ - bool setSignedInt(const str& nameSpace, const str& key, i64 value, nvs_type_t entryType = NVS_TYPE_ANY); + bool setSignedInt (const str& nameSpace, const str& key, i64 value, nvs_type_t entryType = NVS_TYPE_ANY); bool setUnsignedInt(const str& nameSpace, const str& key, u64 value, nvs_type_t entryType = NVS_TYPE_ANY);