rawgps in CI (#25473)

old-commit-hash: 96f8d3acd569a65b2989ce28299291e680d5222b
This commit is contained in:
Adeeb Shihadeh
2022-08-17 20:00:15 -07:00
committed by GitHub
parent 2bd8ee0974
commit b52244ef78
2 changed files with 4 additions and 2 deletions
+2
View File
@@ -11,5 +11,7 @@ system/camerad/cameras/camera_qcom2.cc
system/camerad/cameras/camera_qcom2.h
system/camerad/cameras/real_debayer.cl
selfdrive/sensord/rawgps/*
selfdrive/ui/qt/spinner_larch64
selfdrive/ui/qt/text_larch64
+2 -2
View File
@@ -2,7 +2,7 @@ import os
from cereal import car
from common.params import Params
from system.hardware import PC
from system.hardware import PC, TICI
from selfdrive.manager.process import PythonProcess, NativeProcess, DaemonProcess
WEBCAM = os.getenv("USE_WEBCAM") is not None
@@ -57,7 +57,7 @@ procs = [
PythonProcess("webjoystick", "tools.joystick.web", onroad=False, callback=notcar),
# Experimental
PythonProcess("rawgpsd", "selfdrive.sensord.rawgps.rawgpsd", enabled=os.path.isfile("/persist/comma/use-quectel-rawgps")),
PythonProcess("rawgpsd", "selfdrive.sensord.rawgps.rawgpsd", enabled=(TICI and os.path.isfile("/persist/comma/use-quectel-rawgps"))),
]
managed_processes = {p.name: p for p in procs}