first commit

This commit is contained in:
2025-08-10 06:15:16 +08:00
commit f1df3cc30e
94 changed files with 52218 additions and 0 deletions

13
SDK/CMSIS/CMakeLists.txt Normal file
View File

@@ -0,0 +1,13 @@
project(CMSIS LANGUAGES C CXX ASM)
add_library(CMSIS INTERFACE)
target_include_directories(CMSIS INTERFACE
${CMAKE_SOURCE_DIR}/SDK/CMSIS
${CMAKE_SOURCE_DIR}/SDK/CMSIS/GD/GD32E23x/Include
# Added directory of "gd32e23x_libopt.h".
${CMAKE_SOURCE_DIR}/Inc
# 如有其它需要的头文件目录,可继续添加
)