14 lines
156 B
Batchfile
14 lines
156 B
Batchfile
|
|
@echo off
|
||
|
|
|
||
|
|
set TOOLCHAIN_PATH=.\win
|
||
|
|
|
||
|
|
cd %TOOLCHAIN_PATH%
|
||
|
|
|
||
|
|
.\hdc.exe kill
|
||
|
|
.\hdc.exe shell hilog -w stop
|
||
|
|
.\hdc.exe shell hilog -r
|
||
|
|
|
||
|
|
echo "操作完成"
|
||
|
|
|
||
|
|
pause
|