diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-04-25 11:00:12 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-07-05 15:43:09 +0200 |
commit | 872dd097432a3fb4fb91d24d227486a59be5e24a (patch) | |
tree | 3f3ae7cdcb6dd222f39370fff55bfa1912ba1aff /signal-composer-binding/signal.hpp | |
parent | 7229918a064a862c51217f1294a320c7260da937 (diff) |
Improve signal handling
- Fix memleak: RRelease the Signal JSON representation once used
- Change equality condition between signals
- Use a REALTIME clock to retrieve the timestamp if not provided by
the signal. This is the most simple to date a signal and
use that time for further usage.
- Add a method to retrieve the last_timestamp value from
a signal
This with the commit from ctl-utilities submodule
"8ff0fe3c454ea32ba383a3cfa9c4e91237d6c494" fixes the
issue.
Change-Id: Ifed66796f92d789c80f10b161318f6bef788dda7
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'signal-composer-binding/signal.hpp')
-rw-r--r-- | signal-composer-binding/signal.hpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/signal-composer-binding/signal.hpp b/signal-composer-binding/signal.hpp index c825b37..ddae87d 100644 --- a/signal-composer-binding/signal.hpp +++ b/signal-composer-binding/signal.hpp @@ -115,7 +115,8 @@ public: double average(int seconds = 0) const; double minimum(int seconds = 0) const; double maximum(int seconds = 0) const; - struct signalValue last() const; + struct signalValue last_value() const; + uint64_t last_timestamp() const; int initialRecursionCheck(); int recursionCheck(Signal* obs); |