summaryrefslogtreecommitdiffstats
path: root/lava-slave/scripts/cu-loop
diff options
context:
space:
mode:
Diffstat (limited to 'lava-slave/scripts/cu-loop')
-rwxr-xr-xlava-slave/scripts/cu-loop11
1 files changed, 11 insertions, 0 deletions
diff --git a/lava-slave/scripts/cu-loop b/lava-slave/scripts/cu-loop
new file mode 100755
index 0000000..fbe5777
--- /dev/null
+++ b/lava-slave/scripts/cu-loop
@@ -0,0 +1,11 @@
+#!/bin/sh
+DEV=$1
+BAUD=${2:-115200}
+
+while true; do
+ # NOTE: needs cu >= 1.07-24
+ # c.f. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=336996
+ test -e $DEV && cu -l $DEV -s $BAUD --parity=none --nostop --nortscts dir
+ sleep 0.2
+done
+