Skip to content

Commit

Permalink
fixed can_parsers
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasloetkolben committed Jan 9, 2025
1 parent 9ab660a commit eb0f7f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions opendbc/car/rivian/carstate.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ def __init__(self, CP):

def update(self, can_parsers) -> structs.CarState:
cp = can_parsers[Bus.pt]
cp_cam = can_parsers[Bus.pt]
cp_adas = can_parsers[Bus.pt]
cp_cam = can_parsers[Bus.cam]
cp_adas = can_parsers[Bus.adas]
ret = structs.CarState()

# Vehicle speed
Expand Down

0 comments on commit eb0f7f3

Please sign in to comment.