ao-tools/ao-flash-stm: Use openocd instead of st-utils
[fw/altos] / ao-tools / ao-flash / ao-flash-stm
old mode 100644 (file)
new mode 100755 (executable)
index 993258e..a20428f
@@ -5,20 +5,12 @@ case "$#" in
        exit 1
        ;;
 esac
-
-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
\ No newline at end of file
+cmds=/tmp/flash$$
+trap "rm $cmds" 0 1 15
+file="$1"
+echo "program $file reset" > $cmds
+openocd \
+       -f interface/stlink-v2.cfg \
+       -f target/stm32l1.cfg \
+       -f $cmds \
+       -c shutdown