You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Hello @xRowe & @ebroecker. Thanks for answer, but still it's not what I meant. Freshness and auth info signals are encoded in Motorola byte order format. So start bit of those signals indicates to most significant bit. So start bit of freshness signal should be:
start_bit = int(ipdu_length, 0)*8 + 7 (assuming it exists)
And start bit of auth info signal should be:
start_bit = int(ipdu_length, 0)*8 + int(freshness_tx_length, 0) + 7
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?
The text was updated successfully, but these errors were encountered: