Arhivēts
1
0
Šis repozitorijs ir arhivēts. Ir iespējams aplūkot tā failus un to konēt, bet nav iespējams iesūtīt izmaiņas, kā arī izveidot jaunas problēmas vai izmaiņu pieprasījumus.
controller/Bootloader/Scripts/easyMode.bash
Dan McGregor 0e6f107ea1 Start removing select Linux-isms
bash might not be in /bin. Don't expect it there.
2015-10-20 08:48:59 -06:00

19 rindas
284 B
Bash

#!/usr/bin/env 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