view Bootloader/Scripts/easyMode.bash @ 401:99f93dec8fea

Start removing select Linux-isms bash might not be in /bin. Don't expect it there.
author Dan McGregor <dan.mcgregor@usask.ca>
date Mon, 10 Aug 2015 14:49:46 -0600
parents 6816f4ec783e
children
line wrap: on
line source

#!/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