Skip to content

Commit

Permalink
working on startup for Tx2
Browse files Browse the repository at this point in the history
  • Loading branch information
BogGyver committed Apr 8, 2020
1 parent 0d31098 commit 8f52929
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion selfdrive/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,13 +218,13 @@ def get_running():
'paramsd',
'camerad',
'modeld',
'proclogd',
'ubloxd',
'locationd',
]

if not WEBCAM:
car_started_processes += [
'proclogd',
]

if ANDROID:
Expand All @@ -236,6 +236,11 @@ def get_running():
'deleter',
]

if WEBCAM:
car_started_processes += [
'dmonitoringmodeld',
]

def register_managed_process(name, desc, car_started=False):
global managed_processes, car_started_processes, persistent_processes
print("registering %s" % name)
Expand Down

0 comments on commit 8f52929

Please sign in to comment.