Arquivado
1
0

Adding some convenience scripts used in manufacturing.

Esse commit está contido em:
Jacob Alexander 2015-02-09 13:15:25 -08:00
commit 762e75d875
2 arquivos alterados com 24 adições e 0 exclusões

Ver arquivo

@ -0,0 +1,18 @@
#!/bin/bash
# Just in case there was an extra ledTest.bash (don't care if error)
rm /dev/ttyACM0
./swdLoad.bash kiibohd_manufacturing_2014-11-16.bin 0
echo "Press CTRL+C to Continue"
while true; do
sleep 1
if [ -e /dev/ttyACM0 ]; then
./ledTest.bash
fi
done
exit 0

Ver arquivo

@ -0,0 +1,6 @@
#!/bin/bash
printf "led\r" > /dev/ttyACM0
exit 0