From e5099a0c64cce0910e6940b8ad943b71e798f8e3 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 7 Feb 2024 23:43:52 -0600 Subject: [PATCH] VIN: fix rx addr (#31369) fix rx vin addr old-commit-hash: b6d195f0100bfc86ccefa0eed49716eaf57c1c6b --- selfdrive/car/vin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selfdrive/car/vin.py b/selfdrive/car/vin.py index fe451aa9a9..4e554665ef 100755 --- a/selfdrive/car/vin.py +++ b/selfdrive/car/vin.py @@ -49,7 +49,7 @@ def get_vin(logcan, sendcan, buses, timeout=0.1, retry=3, debug=False): vin = vin[1:18] cloudlog.error(f"got vin with {request=}") - return get_rx_addr_for_tx_addr(addr), bus, vin.decode() + return get_rx_addr_for_tx_addr(addr, rx_offset=rx_offset), bus, vin.decode() except Exception: cloudlog.exception("VIN query exception")