Since auth info/freshness signal is encoded in Motorola byte order format then start bit should indicate to most significant bit. But in the code start bit points to least significant bit:
|
start_bit = int(ipdu_length, 0)*8 + int(freshness_tx_length, 0) + int(auth_tx_length, 0) - 8, |
|
start_bit = int(ipdu_length, 0)*8 + int(freshness_tx_length, 0) - 8, |
@xRowe are you sure it's correct?
Since auth info/freshness signal is encoded in Motorola byte order format then start bit should indicate to most significant bit. But in the code start bit points to least significant bit:
canmatrix/src/canmatrix/formats/arxml.py
Line 1643 in 9a70a85
canmatrix/src/canmatrix/formats/arxml.py
Line 1634 in 9a70a85
@xRowe are you sure it's correct?