Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CyanLight
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fxk8y
CyanLight
Commits
2c9f4ac1
Commit
2c9f4ac1
authored
2 years ago
by
fxk8y
Browse files
Options
Downloads
Patches
Plain Diff
Remove getLongString()-API because somehow it won't work and is mostly useless
parent
84785edb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CLC-qthing/SiliconTorch/NVSExplorer.cpp
+13
-44
13 additions, 44 deletions
CLC-qthing/SiliconTorch/NVSExplorer.cpp
CLC-qthing/SiliconTorch/NVSExplorer.hpp
+1
-1
1 addition, 1 deletion
CLC-qthing/SiliconTorch/NVSExplorer.hpp
with
14 additions
and
45 deletions
CLC-qthing/SiliconTorch/NVSExplorer.cpp
+
13
−
44
View file @
2c9f4ac1
...
...
@@ -571,7 +571,6 @@ namespace SiliconTorch {
}
));
qthing
::
add_binary_message_callback
(
requestTopic
(
"get_str/+/+"
),
wrapMessageHandler
(
[
&
](
std
::
vector
<
std
::
string
>&
topic
,
qthing
::
multipart_message_t
msg
)
{
...
...
@@ -590,37 +589,6 @@ namespace SiliconTorch {
}
));
// #######################################
// ### TODO: remove after testing!! ###
// #######################################
qthing
::
add_binary_message_callback
(
requestTopic
(
"get_LONGstr/+/+"
),
wrapMessageHandler
(
[
&
](
std
::
vector
<
std
::
string
>&
topic
,
qthing
::
multipart_message_t
msg
)
{
size_t
testValue
=
1337000
;
// way too big for NVS
if
(
getStringLength
(
topic
[
1
],
topic
[
2
],
testValue
)
<
testValue
)
{
// key exists and is of type string
char
buffer
[
256
];
std
::
memset
(
&
buffer
[
0
],
0x00
,
256
);
getLongString
(
topic
[
1
],
topic
[
2
],
&
buffer
[
0
]);
std
::
string
value
(
&
buffer
[
0
]);
qthing
::
publish_message
(
responseTopic
(
"get_LONGstr"
,
topic
[
1
],
topic
[
2
]),
value
);
}
else
{
// publish error…?
ESP_LOGW
(
TAG
,
"Retrieving str[] from namespace[ %s ] key[ %s ] FAILED"
,
topic
[
1
].
c_str
(),
topic
[
2
].
c_str
());
}
}
));
// #######################################
// #######################################
qthing
::
add_binary_message_callback
(
requestTopic
(
"set_str/+/+"
),
wrapMessageHandler
(
[
&
](
std
::
vector
<
std
::
string
>&
topic
,
qthing
::
multipart_message_t
msg
)
{
...
...
@@ -957,6 +925,7 @@ namespace SiliconTorch {
std
::
memset
(
&
buffer
[
0
],
0x00
,
size
+
1
);
nvs_get_str
(
nvs
,
key
.
c_str
(),
&
buffer
[
0
],
&
size
);
nvs_close
(
nvs
);
std
::
string
out
(
&
buffer
[
0
]);
...
...
@@ -968,18 +937,18 @@ namespace SiliconTorch {
}
size_t
NVSExplorer
::
getLongString
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
char
*
const
buffer
)
{
size_t
size
=
0
;
nvs_handle_t
nvs
;
if
(
nvs_open
(
nameSpace
.
c_str
(),
NVS_READONLY
,
&
nvs
)
==
ESP_OK
)
{
nvs_get_str
(
nvs
,
key
.
c_str
(),
buffer
,
&
size
);
nvs_close
(
nvs
);
}
return
size
;
}
//
size_t NVSExplorer::getLongString(const std::string& nameSpace, const std::string& key, char* const buffer) {
//
//
size_t size = 0;
//
//
nvs_handle_t nvs;
//
if ( nvs_open(nameSpace.c_str(), NVS_READONLY, &nvs) == ESP_OK ) {
//
nvs_get_str(nvs, key.c_str(), buffer, &size);
//
nvs_close(nvs);
//
}
//
//
return size;
//
}
bool
NVSExplorer
::
setString
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
const
std
::
string
&
value
)
{
...
...
This diff is collapsed.
Click to expand it.
CLC-qthing/SiliconTorch/NVSExplorer.hpp
+
1
−
1
View file @
2c9f4ac1
...
...
@@ -83,7 +83,7 @@ namespace SiliconTorch {
size_t
getStringLength
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
size_t
defaultValue
=
0
);
std
::
string
getString
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
const
std
::
string
&
defaultValue
=
""
);
size_t
getLongString
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
char
*
const
buffer
);
//
size_t getLongString(const std::string& nameSpace, const std::string& key, char* const buffer);
bool
setString
(
const
std
::
string
&
nameSpace
,
const
std
::
string
&
key
,
const
std
::
string
&
value
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment