summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-08-02 16:52:39 -0700
committerKeith Packard <keithp@keithp.com>2016-08-02 17:06:27 -0700
commit165868999f45f4572ff2585fcb3986974a5bbd5c (patch)
tree84eab2b368631d4f6dd37786b703e4671d18cdb5
parentc4926a69d6e72a035197b3d617c62893a7ea1861 (diff)
ao-bringup: Use released files for chaoskey turnon
Signed-off-by: Keith Packard <keithp@keithp.com>
-rwxr-xr-xao-bringup/turnon_chaoskey7
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