Quantum Leaps 890c8e7d8c 5.1.1
2013-10-10 20:01:51 -04:00

16 lines
209 B
Batchfile

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 jlink.gdb %CONF%\dpp.elf
@echo off
endlocal