view Bootloader/Scripts/easyMode.bash @ 434:eae9fd6acc9a

Fixed ghosting matrix check (did send bad keys on release), now using also ghost_old state
author CryHam <cryham@gmail.com>
date Sun, 08 May 2016 09:31:48 +0200
parents 99f93dec8fea
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