This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2015-08-10 20:49:46 +00:00
|
|
|
#!/usr/bin/env bash
|
2015-02-09 21:15:25 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|