2016-09-24 12:07:38 +00:00
|
|
|
@echo off
|
|
|
|
|
rem: Note %~dp0 get path of this batch file
|
|
|
|
|
rem: Need to change drive if My Documents is on a drive other than C:
|
|
|
|
|
set driverLetter=%~dp0
|
|
|
|
|
set driverLetter=%driverLetter:~0,2%
|
|
|
|
|
%driverLetter%
|
|
|
|
|
cd %~dp0
|
|
|
|
|
rem: the two line below are needed to fix path issues with incorrect slashes before the bin file name
|
|
|
|
|
set str=%4
|
|
|
|
|
set str=%str:/=\%
|
2018-10-08 09:03:21 +00:00
|
|
|
stm32flash\stm32flash.exe -g 0x8000000 -b 115200 -w %str% %1
|