更新硬件SDK

This commit is contained in:
kerwincui
2023-03-04 03:44:56 +08:00
parent dcdf6e1b7c
commit e39d3d2f03
1900 changed files with 663153 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
@echo off
set PROJECT_NAME=example
rem you can set your gcc path
rem set GCC_PATH=E:\gcc_mcu
set ROOT_PATH = %cd:\=/%
if not "%1"=="" (
set PROJECT_NAME=%1
) ELSE (
@echo PROJECT not set
)
@echo PROJECT : %PROJECT_NAME%
if not exist xmake.lua (
echo xmake.lua not exist
goto end
)
if "%2"=="-v" (
call xmake -v clean
) ELSE (
call xmake clean
)
:end
echo done