From ed286e69828127e22eb3145a09108063625dea97 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Wed, 7 Sep 2011 05:12:03 -0300 Subject: [PATCH] m1rc3/norruption/loop2: shorter loop (17 s instead of 77 s) that cycles in RTEMS boot, without rendering --- m1rc3/norruption/loop2 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 m1rc3/norruption/loop2 diff --git a/m1rc3/norruption/loop2 b/m1rc3/norruption/loop2 new file mode 100755 index 0000000..3865c9e --- /dev/null +++ b/m1rc3/norruption/loop2 @@ -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