/usr/bin/ao-flash-stm is in altos 1.6-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | #!/bin/sh
case "$#" in
0)
echo "usage: $0 <filename> ..."
exit 1
;;
esac
ST_FLASH=st-flash
if which $ST_FLASH > /dev/null; then
:
else
echo "$0: $ST_FLASH not found. Check to see if the stlink package is installed"
exit 1
fi
file=$1
bin=/tmp/flash$$.bin
trap "rm $bin" 0 1 15
base=`arm-none-eabi-nm $file | awk '/interrupt_vector/ { print $1 }'`
case x"$base" in
x)
echo "$file: No interrupt vector address found"
exit 1
;;
esac
arm-none-eabi-objcopy -O binary $file $bin
$ST_FLASH --reset write $bin $base
|