Initial Commit - Copy from Altus Metrum AltOS
This commit is contained in:
15
ao-tools/ao-flash/ao-flash-stm32f1
Executable file
15
ao-tools/ao-flash/ao-flash-stm32f1
Executable file
@@ -0,0 +1,15 @@
|
||||
#!/bin/sh
|
||||
case "$#" in
|
||||
0)
|
||||
echo "usage: $0 <filename> ..."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
openocd \
|
||||
-f interface/stlink.cfg \
|
||||
-c 'transport select hla_swd' \
|
||||
-f target/stm32f1x.cfg \
|
||||
-c init \
|
||||
-c 'reset halt' \
|
||||
-c "program $1 verify reset" \
|
||||
-c 'shutdown'
|
Reference in New Issue
Block a user