6 lines
305 B
Batchfile
6 lines
305 B
Batchfile
@echo off
|
|
rem Expects three arguments, first - path to UV4.exe (can be obtained as #X), second - path to project (#P), third - current target name (quoted text)
|
|
|
|
chcp 20127 >NUL || exit /b
|
|
|
|
call .\scripts\CLMonitorDumpFilterLauncher_uVision.bat CREATE_AND_UPDATE_DUMP -keilPath %1 -projPath %2 -target %3
|