diff options
-rwxr-xr-x | ao-tools/ao-flash/ao-flash-lpc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/ao-flash/ao-flash-lpc b/ao-tools/ao-flash/ao-flash-lpc index 7ac5b523..9e1d1cdb 100755 --- a/ao-tools/ao-flash/ao-flash-lpc +++ b/ao-tools/ao-flash/ao-flash-lpc @@ -8,9 +8,9 @@ esac cmds=/tmp/flash$$ trap "rm $cmds" 0 1 15 file="$1" -echo "program $file verify reset" > $cmds +echo "program $file reset" > $cmds openocd \ -f interface/stlink-v2.cfg \ - -f target/lpc11u14.cfg \ + -f target/lpc11xx.cfg \ -f $cmds \ -c shutdown |