X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=low-can-binding%2Futils%2Fconverter.cpp;h=f790fc00ef6b8e4c1371d2d54eb8ea24789f3de3;hb=b1cc43eb48778c4e5e30baa3d852307da056d82c;hp=e3db7f338120bad3b9cc80e8ecee2236651020da;hpb=bd8c71dd8eb67e0f043636bedab9ad3b0cc8109f;p=apps%2Fagl-service-can-low-level.git diff --git a/low-can-binding/utils/converter.cpp b/low-can-binding/utils/converter.cpp index e3db7f33..f790fc00 100644 --- a/low-can-binding/utils/converter.cpp +++ b/low-can-binding/utils/converter.cpp @@ -55,3 +55,33 @@ void converter_t::signal_to_bits_bytes(uint32_t bit_position, uint32_t bit_size, new_end_byte = (bit_position + bit_size - 1) >> 3; new_end_bit = (bit_position + bit_size - 1) % 8; } + + +/** + * @brief This is to use when you have a big endian CAN frame layout. + * It converts the bit position so it matches with little endiant CAN frame layout. + * + * @param bit_position Original bit position. + * @param bit_size Size of the data. + * @return uint32_t New little endian bit position. + */ +uint32_t converter_t::bit_position_swap(uint32_t bit_position,uint32_t bit_size) +{ + uint32_t start_byte_position = (uint32_t)(bit_position/8); + uint32_t bit_size_rest = bit_size; + if(bit_size<=8 && ((bit_position+bit_size)%8==bit_size || (bit_position+bit_size)%8==0)) + { + return (uint32_t)(start_byte_position*8 + (8-bit_size)); + } + else + { + do + { + bit_size_rest = bit_size_rest - ((start_byte_position+1)*8-bit_position); + start_byte_position--; + bit_position = start_byte_position*8; + } while (bit_size_rest>8); + return (uint32_t)(start_byte_position*8 + (8-bit_size_rest)); + } + +}