diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-07-14 17:31:12 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-07-21 12:02:11 +0200 |
commit | 2a4abf5bd6440e9cd5b98b70453d74ae3d1b8cfa (patch) | |
tree | 637ad119b03aa7f10a2ffef5fde100e5075ff52b /low-can-binding/can/can-encoder.hpp | |
parent | a483f245eb1aae07917c9074568c8cda82855ff6 (diff) |
Fix: encoding value method has wrong signature.
Change-Id: I227c721f782eef85f83db9ffdb7cc0e180d17da4
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/can/can-encoder.hpp')
-rw-r--r-- | low-can-binding/can/can-encoder.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/low-can-binding/can/can-encoder.hpp b/low-can-binding/can/can-encoder.hpp index f7e8394f..c79e2245 100644 --- a/low-can-binding/can/can-encoder.hpp +++ b/low-can-binding/can/can-encoder.hpp @@ -24,7 +24,7 @@ class encoder_t { public: - static const can_frame build_frame(const can_signal_t& signal, uint64_t value); + static const can_frame build_frame(const std::shared_ptr<can_signal_t>& signal, uint64_t value); static uint64_t encode_state(const can_signal_t& signal, const std::string& value, bool* send); static uint64_t encode_boolean(const can_signal_t& signal, bool value, bool* send); static uint64_t encode_number(const can_signal_t& signal, float value, bool* send); |