Merge branch 'master' of github.com:p42/project42

This commit is contained in:
bsx 2011-05-22 21:10:31 +02:00
commit 39696e59fd
1 changed files with 15 additions and 0 deletions

15
tools/autoflash-cygwin.sh Normal file
View File

@ -0,0 +1,15 @@
drive=/cygdrive/f
file=$drive/firmware.bin
while : ; do
while [ ! -f $file ] ; do
sleep 1
done
cp firmware.bin $file
echo -n '<Flashed>'
echo -n '<Flashed>'|sed 's/.//g';
while [ -f $file ] ; do
sleep 1
done
done