This repository has been archived by the owner on Nov 15, 2022. It is now read-only.
forked from Gernby/openpilot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
#!/usr/bin/env python3 | ||
import os | ||
import time | ||
import signal | ||
import subprocess | ||
import cereal.messaging as messaging | ||
from common.basedir import BASEDIR | ||
|
||
services = ['controlsState', 'thermal', 'radarState'] # the services needed to be spoofed to start ui offroad | ||
procs = {'camerad': 'selfdrive/camerad/camerad', 'ui': 'selfdrive/ui/ui', | ||
'modeld': 'selfdrive/modeld/modeld', 'calibrationd': 'selfdrive/locationd/calibrationd.py'} | ||
started_procs = [subprocess.Popen(os.path.join(BASEDIR, procs[p]), cwd=os.path.join(BASEDIR, os.path.dirname(procs[p]))) for p in procs] # start needed processes | ||
pm = messaging.PubMaster(services) | ||
|
||
dat_cs, dat_thermal, dat_radar = [messaging.new_message(s) for s in services] | ||
dat_cs.controlsState.rearViewCam = False # ui checks for these two messages | ||
dat_thermal.thermal.started = True | ||
|
||
try: | ||
while True: | ||
pm.send('controlsState', dat_cs) | ||
pm.send('thermal', dat_thermal) | ||
pm.send('radarState', dat_radar) | ||
time.sleep(1 / 100) # continually send, rate doesn't matter | ||
except KeyboardInterrupt: | ||
[p.send_signal(signal.SIGINT) for p in started_procs] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters