mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-28 06:02:56 +08:00
16 lines
210 B
Batchfile
16 lines
210 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 stlink.gdb %CONF%\dpp.elf
|
|
|
|
@echo off
|
|
endlocal
|