16 lines
210 B
Batchfile
Raw Normal View History

2012-08-14 18:00:48 -04:00
setlocal
@echo off
if "%1"=="rel" (
set CONF=rel
) else if "%1"=="spy" (
set CONF=spy
) else (
set CONF=dbg
)
@echo on
arm-eabi-insight -x stlink.gdb %CONF%\dpp.elf
@echo off
endlocal