blob: 9eebf5d2e55eb0dde1312d95cf53c8c95a669db5 (
plain) (
blame)
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
|