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

ST: Code formatting

parent 2501ff1d
No related branches found
No related tags found
No related merge requests found
...@@ -65,18 +65,18 @@ namespace SiliconTorch { ...@@ -65,18 +65,18 @@ namespace SiliconTorch {
i64 getI64(const str& nameSpace, const str& key, i64 defaultValue = 0); 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); 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); bool setDouble(const str& nameSpace, const str& key, double value);
// Gets the key regardless of its type in flash // 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); u64 getUnsignedInt(const str& nameSpace, const str& key, u64 defaultValue = 0);
// TODO: ⮦ Both unimplemented atm ⮧ // 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); bool setUnsignedInt(const str& nameSpace, const str& key, u64 value, nvs_type_t entryType = NVS_TYPE_ANY);
......
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