mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-02-04 06:13:00 +08:00
33 lines
899 B
Batchfile
33 lines
899 B
Batchfile
|
::============================================================================
|
||
|
:: Batch file to program the flash of EK-TM4C123GXL
|
||
|
::
|
||
|
:: NOTE: requires the LMFlash programmer (included in QTools for Windows)
|
||
|
::
|
||
|
@echo off
|
||
|
setlocal
|
||
|
|
||
|
@echo Load a given binary file to the flash of EK-TM4C123GXL
|
||
|
@echo usage: flash binary-file
|
||
|
@echo example: flash dbg\blinky-qk.bin
|
||
|
|
||
|
::----------------------------------------------------------------------------
|
||
|
:: NOTE: The following symbol LMFLASH assumes that LMFlash.exe can
|
||
|
:: be found on the PATH. You might need to adjust this symbol to the
|
||
|
:: location of the LMFlash utility on your machine
|
||
|
::
|
||
|
set LMFLASH=LMFlash.exe
|
||
|
|
||
|
if ["%~1"]==[""] (
|
||
|
@echo The binary file missing
|
||
|
@goto end
|
||
|
)
|
||
|
if not exist %~s1 (
|
||
|
@echo The binary file '%1' does not exist
|
||
|
@goto end
|
||
|
)
|
||
|
|
||
|
%LMFLASH% -q ek-tm4c123gxl -e -v -r %1
|
||
|
|
||
|
:end
|
||
|
|
||
|
endlocal
|