diff --git a/selfdrive/car/honda/carcontroller.py b/selfdrive/car/honda/carcontroller.py index e535747320..e6635602a2 100644 --- a/selfdrive/car/honda/carcontroller.py +++ b/selfdrive/car/honda/carcontroller.py @@ -13,6 +13,9 @@ from selfdrive.controls.lib.drive_helpers import rate_limit VisualAlert = car.CarControl.HUDControl.VisualAlert LongCtrlState = car.CarControl.Actuators.LongControlState +# Number of frames to skip before showing the STOPPED message after standstill +STOCK_DELAY_STOPPED_FRAMES = 400 + def compute_gb_honda_bosch(accel, speed): # TODO returns 0s, is unused @@ -135,7 +138,7 @@ class CarController: hud_v_cruise = hud_control.setSpeed * conversion if hud_control.speedVisible else 255 if CC.longActive and actuators.longControlState == LongCtrlState.stopping: self.stopping_counter += 1 - if self.stopping_counter > 400: + if self.stopping_counter > STOCK_DELAY_STOPPED_FRAMES: hud_v_cruise = 252 else: self.stopping_counter = 0