Files
StarPilot/tools/serial/connect.sh
T
Adeeb Shihadeh a59a1fae26 add comma serial to tools
old-commit-hash: 29499463375c659e8c830bf06996a9964c7aaf79
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