mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-06-29 02:22:09 +08:00
a59a1fae26
old-commit-hash: 29499463375c659e8c830bf06996a9964c7aaf79
9 lines
126 B
Bash
Executable File
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
|