diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2019-12-04 17:26:58 +0100 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2020-01-09 16:25:36 +0100 |
commit | 0ff6413b6dc42849f87ce8caa17a91f44ede2f93 (patch) | |
tree | 4ad97df3b971fe8d7d6a3a07f4563ec80d2c03fa /low-can-binding/can/signals.cpp | |
parent | 7f905a75de0600ef0c2316db0f3deaa33aabd9e7 (diff) |
decoder: rework how to swap frame layout.
This also change the bit_position to retrieve the bit word starting from the left
or the right of the frame depending on the endianness of the frame layout.
Change-Id: I28658e9d46bd35d8ecabeece317331832229384a
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'low-can-binding/can/signals.cpp')
-rwxr-xr-x | low-can-binding/can/signals.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/low-can-binding/can/signals.cpp b/low-can-binding/can/signals.cpp index 28246a05..da8df988 100755 --- a/low-can-binding/can/signals.cpp +++ b/low-can-binding/can/signals.cpp @@ -71,7 +71,6 @@ signal_t::signal_t( , sign_{sign} , bit_sign_position_{bit_sign_position} , unit_{unit} - ,bit_position_is_swapped_{false} {} signal_t::signal_t( @@ -105,7 +104,6 @@ signal_t::signal_t( , decoder_{decoder} , encoder_{encoder} , received_{received} - , bit_position_is_swapped_{false} {} std::shared_ptr<message_definition_t> signal_t::get_message() const @@ -253,13 +251,3 @@ const std::string signal_t::get_unit() const { return unit_; } - -bool signal_t::bit_position_is_swapped() const -{ - return bit_position_is_swapped_; -} - -void signal_t::bit_position_is_swapped_reverse() -{ - bit_position_is_swapped_ = !bit_position_is_swapped_; -} |