From 5ac1f7b1bf557fb06346a360b9f671bce6c87ae9 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Mon, 12 Aug 2024 20:33:55 -0700 Subject: [PATCH] fix crash --- selfdrive/car/structs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/car/structs.py b/selfdrive/car/structs.py index 678efa1186..dce60e99b2 100644 --- a/selfdrive/car/structs.py +++ b/selfdrive/car/structs.py @@ -84,6 +84,7 @@ class CarState: accFaulted: bool = auto_field() carFaultedNonCritical: bool = auto_field() # some ECU is faulted, but car remains controllable espActive: bool = auto_field() + vehicleSensorsInvalid: bool = auto_field() # invalid steering angle readings, etc. # cruise state cruiseState: 'CarState.CruiseState' = field(default_factory=lambda: CarState.CruiseState())