Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
9.2.2023: Due to updates GitLab will be unavailable for some minutes between 9:00 and 11:00.
Open sidebar
dcdb
dcdb
Commits
3fb69e50
Commit
3fb69e50
authored
Jun 13, 2019
by
Micha Müller
Browse files
Squash a few doxygen warnings
parent
0016f8b5
Changes
3
Hide whitespace changes
Inline
Side-by-side
analytics/includes/AnalyzerConfiguratorTemplate.h
View file @
3fb69e50
...
...
@@ -445,6 +445,7 @@ protected:
*
* @param sBase The sensor that must be configured
* @param config A boost property (sub-)tree containing the sensor values
* @param isTemplate Do we read a template sensor?
* @return True if successful, false otherwise
*/
bool
readSensorBase
(
SBase
&
sBase
,
CFG_VAL
config
,
bool
isTemplate
=
false
)
{
...
...
common/include/mqttchecker.h
View file @
3fb69e50
...
...
@@ -64,7 +64,7 @@ public:
/**
* @brief Converts a numerical job ID to its internal MQTT topic representation
*
* @param jobI
D
The job ID value to be processed
* @param jobI
d
The job ID value to be processed
* @return The processed MQTT topic
*/
static
std
::
string
jobToTopic
(
uint32_t
jobId
)
{
...
...
common/include/sensorbase.h
View file @
3fb69e50
...
...
@@ -175,6 +175,7 @@ public:
* @param factor Scaling factor, which is applied to the reading value (optional)
* @param maxValue Maximum possible value of the reading; required for the
* delta computation to detect an overflow.
* @param storeGlobal Store reading in reading queue, so that it can get pushed.
*/
void
storeReading
(
reading_t
rawReading
,
double
factor
=
1.0
,
long
long
maxValue
=
LLONG_MAX
,
bool
storeGlobal
=
true
)
{
reading_t
reading
=
rawReading
;
...
...
@@ -216,6 +217,7 @@ public:
* @param factor Scaling factor, which is applied to the reading value (optional)
* @param maxValue Maximum possible value of the reading; required for the
* delta computation to detect an overflow.
* @param storeGlobal Store reading in reading queue, so that it can get pushed.
*/
void
storeReading
(
ureading_t
rawReading
,
double
factor
=
1.0
,
unsigned
long
long
maxValue
=
ULLONG_MAX
,
bool
storeGlobal
=
true
)
{
reading_t
reading
;
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment