Initial commit

This commit is contained in:
2025-08-10 23:18:29 +08:00
commit c13a7abc84
95 changed files with 52342 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
# 如有其它需要的头文件目录,可继续添加
)