15 lines
410 B
Batchfile
15 lines
410 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
set "HEX_TOOL=%~1"
|
|
set "OUT_FILE=%~2"
|
|
set "BIN_DIR=%~3"
|
|
|
|
if not exist "%BIN_DIR%" mkdir "%BIN_DIR%"
|
|
|
|
"%HEX_TOOL%" "%OUT_FILE%" -boot -sci8 -map "%BIN_DIR%\UKSSTMS320F28335.map" -o "%BIN_DIR%\UKSSTMS320F28335.hex" -i
|
|
if errorlevel 1 exit /b %errorlevel%
|
|
|
|
"%HEX_TOOL%" "%OUT_FILE%" -boot -sci8 -map "%BIN_DIR%\UKSSTMS320F28335.map" -o "%BIN_DIR%\UKSSTMS320F28335.bin" -b
|
|
exit /b %errorlevel%
|