Files
sunnypilot/tools/serial/connect.sh
Adeeb Shihadeh a59a1fae26 add comma serial to tools
old-commit-hash: 2949946337
2021-08-18 15:00:51 -07:00

9 lines
126 B
Bash
Executable File

#!/bin/bash
while true; do
if ls /dev/ttyUSB* 2> /dev/null; then
sudo screen /dev/ttyUSB* 115200
fi
sleep 0.1
done