1
0
mirror of https://github.com/azure-rtos/threadx synced 2025-02-06 08:08:27 +08:00
threadx/test/ports/azrtos_debug_tx_arm_ds.bat

17 lines
317 B
Batchfile

@ECHO OFF
ECHO INFO: Debugging %CD%...
IF NOT EXIST workspace (
ECHO ERROR: the workspace doesn't exist!
EXIT /B 2
)
%AZRTOS_ARM_DS_IDEC% -nosplash --launcher.suppressErrors -data .\workspace
IF %ERRORLEVEL% NEQ 0 (
ECHO ERROR: build failed.
EXIT /B 1
)
ECHO INFO: Debugger started successfully!