diff --git a/selfdrive/controls/lib/drive_helpers.py b/selfdrive/controls/lib/drive_helpers.py index b6a844d2..5b64647d 100644 --- a/selfdrive/controls/lib/drive_helpers.py +++ b/selfdrive/controls/lib/drive_helpers.py @@ -9,10 +9,10 @@ from openpilot.common.realtime import DT_CTRL # WARNING: this value was determined based on the model's training distribution, # model predictions above this speed can be unpredictable # V_CRUISE's are in kph -V_CRUISE_MIN = 8 -V_CRUISE_MAX = 145 +V_CRUISE_MIN = 23 #For Baby Enclave 8 +V_CRUISE_MAX = 146 #For Baby Enclave 145 V_CRUISE_UNSET = 255 -V_CRUISE_INITIAL = 40 +V_CRUISE_INITIAL = 23 #For Baby Enclave 40 V_CRUISE_INITIAL_EXPERIMENTAL_MODE = 105 IMPERIAL_INCREMENT = 1.6 # should be CV.MPH_TO_KPH, but this causes rounding errors