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/can-decoder.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/can-decoder.cpp')
-rw-r--r-- | low-can-binding/can/can-decoder.cpp | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/low-can-binding/can/can-decoder.cpp b/low-can-binding/can/can-decoder.cpp index cf4306a5..0e64cccd 100644 --- a/low-can-binding/can/can-decoder.cpp +++ b/low-can-binding/can/can-decoder.cpp @@ -99,6 +99,14 @@ float decoder_t::parse_signal_bitfield(signal_t& signal, std::shared_ptr<message uint8_t bit_size = (uint8_t) signal.get_bit_size(); uint32_t bit_position = signal.get_bit_position(); + if(!signal.get_message()->frame_layout_is_little()) + { + bit_position = converter_t::bit_position_swap(message->get_length(), + signal.get_bit_position(), + signal.get_bit_size()); + message->frame_swap(); + } + int new_start_byte = 0; int new_end_byte = 0; uint8_t new_start_bit = 0; @@ -320,11 +328,6 @@ openxc_DynamicField decoder_t::decode_state(signal_t& signal, std::shared_ptr<me /// openxc_DynamicField decoder_t::translate_signal(signal_t& signal, std::shared_ptr<message_t> message, bool* send) { - if(!signal.get_message()->frame_layout_is_little() && !signal.bit_position_is_swapped()) - { - signal.set_bit_position(converter_t::bit_position_swap(signal.get_bit_position(),signal.get_bit_size())); - signal.bit_position_is_swapped_reverse(); - } // Must call the decoders every time, regardless of if we are going to // decide to send the signal or not. openxc_DynamicField decoded_value = decoder_t::decode_signal(signal, |