增加自动化编译打包脚本

This commit is contained in:
2026-09-04 14:59:14 +08:00
parent f4eb881ba7
commit 011bc43621
6 changed files with 275 additions and 205 deletions
+12
View File
@@ -0,0 +1,12 @@
@echo off
chcp 65001 >nul
cd /d "%~dp0"
powershell -NoProfile -ExecutionPolicy Bypass -File "%~dp0pack_firmware.ps1"
if errorlevel 1 (
echo.
echo pack failed.
pause
exit /b 1
)
echo.
pause