diff options
author | Keith Packard <keithp@keithp.com> | 2016-08-02 16:52:39 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-08-02 17:06:27 -0700 |
commit | 165868999f45f4572ff2585fcb3986974a5bbd5c (patch) | |
tree | 84eab2b368631d4f6dd37786b703e4671d18cdb5 /ao-bringup | |
parent | c4926a69d6e72a035197b3d617c62893a7ea1861 (diff) |
ao-bringup: Use released files for chaoskey turnon
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-bringup')
-rwxr-xr-x | ao-bringup/turnon_chaoskey | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ao-bringup/turnon_chaoskey b/ao-bringup/turnon_chaoskey index 50460008..8ac8479e 100755 --- a/ao-bringup/turnon_chaoskey +++ b/ao-bringup/turnon_chaoskey @@ -24,11 +24,14 @@ echo "Expectations:" echo "\tChaosKey v$VERSION powered from USB" echo -$DFU_UTIL -a 0 -s 0x08000000:leave -D ../src/chaoskey-v$VERSION/flash-loader/chaoskey-v$VERSION*.bin || exit 1 +FLASH_FILE=~/altusmetrumllc/Binaries/loaders/chaoskey-v1.0-altos-flash-*.bin +ALTOS_FILE=~/altusmetrumllc/Binaries/chaoskey-v1.0-*.elf + +$DFU_UTIL -a 0 -s 0x08000000:leave -D $FLASH_FILE || exit 1 sleep 2 -$USBLOAD --serial=1 ../src/chaoskey-v$VERSION/chaoskey-v$VERSION*.ihx || exit 1 +$USBLOAD --serial=1 $ALTOS_FILE || exit 1 sleep 1 |