pull/964/head
George Hotz 5 years ago
parent 6ceffe68d0
commit 013166a34e
  1. 2
      selfdrive/car/car_helpers.py
  2. 7
      selfdrive/controls/lib/alerts.py

@ -10,6 +10,8 @@ from selfdrive.car import gen_empty_fingerprint
def get_startup_alert(car_recognized, controller_available):
alert = 'startup'
if Params().get("GitBranch") in ['master', 'master-ci']:
alert = 'startupMaster'
if not car_recognized:
alert = 'startupNoCar'
elif car_recognized and not controller_available:

@ -171,6 +171,13 @@ ALERTS = [
AlertStatus.normal, AlertSize.mid,
Priority.LOW_LOWEST, VisualAlert.none, AudibleAlert.none, 0., 0., 15.),
Alert(
"startupMaster",
"WARNING: This branch is not tested",
"Always keep hands on wheel and eyes on road",
AlertStatus.userPrompt, AlertSize.mid,
Priority.LOW_LOWEST, VisualAlert.none, AudibleAlert.none, 0., 0., 15.),
Alert(
"startupNoControl",
"Dashcam mode",

Loading…
Cancel
Save