aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--low-can-binding/utils/converter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/low-can-binding/utils/converter.cpp b/low-can-binding/utils/converter.cpp
index 56625742..6c9cedbb 100644
--- a/low-can-binding/utils/converter.cpp
+++ b/low-can-binding/utils/converter.cpp
@@ -99,5 +99,5 @@ uint32_t converter_t::bit_position_swap(unsigned int msg_length, unsigned int bi
*/
uint32_t converter_t::continental_bit_position_mess(unsigned int msg_length, unsigned int bit_position, unsigned int bit_size)
{
- return bit_position + (CHAR_BIT - bit_position % CHAR_BIT) - bit_size;
+ return bit_position + CHAR_BIT - 2 * (bit_position % CHAR_BIT) - bit_size;
}