Skip to content

Commit

Permalink
do correct id-masking
Browse files Browse the repository at this point in the history
  • Loading branch information
ebroecker committed Jan 8, 2025
1 parent 2971d71 commit d3dd993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/canmatrix/formats/eds.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def load(f, **options): # type: (typing.IO, **typing.Any) -> canmatrix.CanMatri
for index in range(0x1800, 0x1808):
if index in od:
# store canid in object...
od[index+0x200].canid = od[index][1].default - 0x40000000
od[index+0x200].canid = od[index][1].default & 0x7FF

#TX
for index in range(0x1A00, 0x1A08):
Expand Down

0 comments on commit d3dd993

Please sign in to comment.