selfdrived: disable HUD VisualAlert for belowSteerSpeed events (#36109)

pull/36093/merge
Jason Young 3 days ago committed by GitHub
parent 03e9777c3f
commit ff34b8af76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      selfdrive/selfdrived/events.py

@ -243,7 +243,7 @@ def below_steer_speed_alert(CP: car.CarParams, CS: car.CarState, sm: messaging.S
f"Steer Unavailable Below {get_display_speed(CP.minSteerSpeed, metric)}",
"",
AlertStatus.userPrompt, AlertSize.small,
Priority.LOW, VisualAlert.steerRequired, AudibleAlert.prompt, 0.4)
Priority.LOW, VisualAlert.none, AudibleAlert.prompt, 0.4)
def calibration_incomplete_alert(CP: car.CarParams, CS: car.CarState, sm: messaging.SubMaster, metric: bool, soft_disable_time: int, personality) -> Alert:

Loading…
Cancel
Save