diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-26 16:19:53 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2019-11-28 16:11:48 +0100 |
commit | 46a6d2ed70bf66ad8255513191d2bb7b26cd32bb (patch) | |
tree | 007195a0717c4b59ed6f695ef1954f519f484fb4 /low-can-binding/can/can-decoder.hpp | |
parent | 1fa52a04542ed648b5a2a15b2f3d252f33202a33 (diff) |
Add new decoders bytes for signal of long size
This commit adds the decoder bytes. It allows to
return a sequence of bytes in hexadecimal form.
Bug-AGL : SPEC-2780
Bug-AGL: SPEC-2976
Change-Id: I27180774f044c48a9d7baa2739b15a2e85b8b2e2
Signed-off-by: Arthur Guyader <arthur.guyader@iot.bzh>
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/can/can-decoder.hpp')
-rw-r--r-- | low-can-binding/can/can-decoder.hpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/low-can-binding/can/can-decoder.hpp b/low-can-binding/can/can-decoder.hpp index 78de8ee1..a5e3acbe 100644 --- a/low-can-binding/can/can-decoder.hpp +++ b/low-can-binding/can/can-decoder.hpp @@ -30,6 +30,7 @@ public: static openxc_DynamicField decode_boolean(signal_t& signal, std::shared_ptr<message_t> message, bool* send); static openxc_DynamicField decode_ignore(signal_t& signal, std::shared_ptr<message_t> message, bool* send); static openxc_DynamicField decode_noop(signal_t& signal, std::shared_ptr<message_t> message, bool* send); + static openxc_DynamicField decode_bytes(signal_t& signal, std::shared_ptr<message_t> message, bool* send); static openxc_DynamicField translate_signal(signal_t& signal, std::shared_ptr<message_t> message, bool* send); |