m1rc3/norruption/loop2: shorter loop (17 s instead of 77 s) that cycles in RTEMS boot, without rendering

This commit is contained in:
Werner Almesberger
2011-09-07 05:12:03 -03:00
parent 05c52e7390
commit ed286e6982
+17
View File
@@ -0,0 +1,17 @@
#!/bin/sh
n=0
while true; do
n=`expr $n + 1`
echo ===== $n =====
labsw ch1=0 ch2=0
sleep 5
labsw ch1=1 ch2=1
sleep 2
make -C ../../m1/jtag-boot boot
sleep 8
echo echo === $n === `date` >/dev/ttyUSB0
sleep 2
done