Fix speed too low (#1627)

* fix speed too low

* bump ref

Co-authored-by: Willem Melching <willem.melching@gmail.com>
pull/1629/head
Adeeb 2020-06-02 17:31:59 -07:00 committed by GitHub
parent 60620fe773
commit 165bcf1f31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 11 additions and 8 deletions

2
cereal

@ -1 +1 @@
Subproject commit 978ffda4057542514b233a4b540690a964651dca
Subproject commit cc14179697fac4757daeaa7968ac29d490204693

View File

@ -149,7 +149,7 @@ class CarInterface(CarInterfaceBase):
events = self.create_common_events(ret, pcm_enable=False)
if ret.vEgo < self.CP.minEnableSpeed:
events.add(EventName.speedTooLow)
events.add(EventName.belowEngageSpeed)
if self.CS.park_brake:
events.add(EventName.parkBrake)
if ret.cruiseState.standstill:

View File

@ -482,12 +482,12 @@ class CarInterface(CarInterfaceBase):
events.add(EventName.parkBrake)
if self.CP.enableCruise and ret.vEgo < self.CP.minEnableSpeed:
events.add(EventName.speedTooLow)
events.add(EventName.belowEngageSpeed)
# it can happen that car cruise disables while comma system is enabled: need to
# keep braking if needed or if the speed is very low
if self.CP.enableCruise and not ret.cruiseState.enabled \
and (c.actuators.brake <= 0. or not self.CP.openpilotLongitudinalControl) and (self.CP.minEnableSpeed > 0):
and (c.actuators.brake <= 0. or not self.CP.openpilotLongitudinalControl):
# non loud alert if cruise disables below 25mph as expected (+ a little margin)
if ret.vEgo < self.CP.minEnableSpeed + 2.:
events.add(EventName.speedTooLow)

View File

@ -77,7 +77,7 @@ class CarInterface(CarInterfaceBase):
events = self.create_common_events(ret)
if self.CS.low_speed_lockout:
events.add(EventName.speedTooLow)
events.add(EventName.belowEngageSpeed)
if self.CS.low_speed_alert:
events.add(EventName.belowSteerSpeed)

View File

@ -323,7 +323,7 @@ class CarInterface(CarInterfaceBase):
if self.CS.low_speed_lockout and self.CP.openpilotLongitudinalControl:
events.add(EventName.lowSpeedLockout)
if ret.vEgo < self.CP.minEnableSpeed and self.CP.openpilotLongitudinalControl:
events.add(EventName.speedTooLow)
events.add(EventName.belowEngageSpeed)
if c.actuators.gas > 0.1:
# some margin on the actuator to not false trigger cancellation while stopping
events.add(EventName.speedTooLow)

View File

@ -506,6 +506,10 @@ EVENTS = {
duration_hud_alert=0.),
},
EventName.belowEngageSpeed: {
ET.NO_ENTRY: NoEntryAlert("Speed Too Low"),
},
EventName.sensorDataInvalid: {
ET.PERMANENT: Alert(
"No Data from Device Sensors",
@ -680,7 +684,6 @@ EVENTS = {
"Speed too low",
AlertStatus.normal, AlertSize.mid,
Priority.HIGH, VisualAlert.none, AudibleAlert.chimeDisengage, .4, 2., 3.),
ET.NO_ENTRY: NoEntryAlert("Speed Too Low"),
},
EventName.speedTooHigh: {

View File

@ -1 +1 @@
5bad0192bf35d8f08f26dd5ac72b3c1d62a57569
5abe4f99eec3633bc30fda47c272e0f19a840a29