You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
262 B
14 lines
262 B
3 weeks ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
(
|
||
|
cd /home/batman/openpilot/tools/camerastream
|
||
|
./compressed_vipc.py 192.168.61.123 --cam $1 &
|
||
|
|
||
|
cd /home/batman/openpilot/selfdrive/ui
|
||
|
./watch3 $1 &
|
||
|
|
||
|
wait
|
||
|
);
|
||
|
|
||
|
trap 'pkill -9 -f compressed_vipc.py; pkill -9 -f watch3; exit 1' SIGINT
|