uiview.py update (#21859)

* clean up uiview and add pandastate for going onroad

* don't need radarState
old-commit-hash: 7166f166c0
commatwo_master
sshane 4 years ago committed by GitHub
parent 6c4bf564c4
commit 6f090bf646
  1. 15
      selfdrive/debug/uiview.py

@ -3,9 +3,8 @@ import time
import cereal.messaging as messaging import cereal.messaging as messaging
from selfdrive.manager.process_config import managed_processes from selfdrive.manager.process_config import managed_processes
if __name__ == "__main__": if __name__ == "__main__":
services = ['controlsState', 'deviceState', 'radarState'] # the services needed to be spoofed to start ui offroad services = ['controlsState', 'deviceState', 'pandaState'] # the services needed to be spoofed to start ui offroad
procs = ['camerad', 'ui', 'modeld', 'calibrationd'] procs = ['camerad', 'ui', 'modeld', 'calibrationd']
for p in procs: for p in procs:
@ -13,15 +12,15 @@ if __name__ == "__main__":
pm = messaging.PubMaster(services) pm = messaging.PubMaster(services)
dat_controlsState, dat_deviceState, dat_radar = [messaging.new_message(s) for s in services] msgs = {s: messaging.new_message(s) for s in services}
dat_deviceState.deviceState.started = True msgs['deviceState'].deviceState.started = True
msgs['pandaState'].pandaState.ignitionLine = True
try: try:
while True: while True:
pm.send('controlsState', dat_controlsState) time.sleep(1 / 100) # continually send, rate doesn't matter
pm.send('deviceState', dat_deviceState) for s in msgs:
pm.send('radarState', dat_radar) pm.send(s, msgs[s])
time.sleep(1 / 100) # continually send, rate doesn't matter for deviceState
except KeyboardInterrupt: except KeyboardInterrupt:
for p in procs: for p in procs:
managed_processes[p].stop() managed_processes[p].stop()

Loading…
Cancel
Save