首页 星云 工具 资源 星选 资讯 热门工具
:

PDF转图片 完全免费 小红书视频下载 无水印 抖音视频下载 无水印 数字星空

GD32H7系列CLion工程模版

硬件开发 670.76KB 17 需要积分: 1
立即下载

资源介绍:

GD32H7系列CLion工程模版
set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_VERSION 1) cmake_minimum_required(VERSION 3.19) # specify cross-compilers and tools set(CMAKE_C_COMPILER arm-none-eabi-gcc) set(CMAKE_CXX_COMPILER arm-none-eabi-g++) set(CMAKE_ASM_COMPILER arm-none-eabi-gcc) set(CMAKE_AR arm-none-eabi-ar) set(CMAKE_OBJCOPY arm-none-eabi-objcopy) set(CMAKE_OBJDUMP arm-none-eabi-objdump) set(SIZE arm-none-eabi-size) set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) # project settings project(gd32H7_gcc C CXX ASM) set(CMAKE_CXX_STANDARD 20) set(CMAKE_C_STANDARD 11) #Uncomment for hardware floating point #add_compile_definitions(ARM_MATH_CM4;ARM_MATH_MATRIX_CHECK;ARM_MATH_ROUNDING) #add_compile_options(-mfloat-abi=hard -mfpu=fpv4-sp-d16) #add_link_options(-mfloat-abi=hard -mfpu=fpv4-sp-d16) #Uncomment for software floating point #add_compile_options(-mfloat-abi=soft) add_compile_options(-mcpu=cortex-m7 -mthumb -mthumb-interwork) add_compile_options(-ffunction-sections -fdata-sections -fno-common -fmessage-length=0) # uncomment to mitigate c++17 absolute addresses warnings #set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-register") # Enable assembler files preprocessing add_compile_options($<$:-x$assembler-with-cpp>) if ("${CMAKE_BUILD_TYPE}" STREQUAL "Release") message(STATUS "Maximum optimization for speed") add_compile_options(-Ofast) elseif ("${CMAKE_BUILD_TYPE}" STREQUAL "RelWithDebInfo") message(STATUS "Maximum optimization for speed, debug info included") add_compile_options(-Ofast -g) elseif ("${CMAKE_BUILD_TYPE}" STREQUAL "MinSizeRel") message(STATUS "Maximum optimization for size") add_compile_options(-Os) else () message(STATUS "Minimal optimization, debug info included") add_compile_options(-Og -g) endif () #把头文件包含一下 include_directories( Drivers/CMSIS/GD/GD32H7xx/Include Drivers/CMSIS/Include Drivers/GD32H7xx_standard_peripheral/Include Core ) add_definitions(-DDEBUG -DGD32H7XX) file(GLOB_RECURSE SOURCES "Core/*.*" "Drivers/*.*") set(LINKER_SCRIPT ${CMAKE_SOURCE_DIR}/gd32h7xx_flash.ld) add_link_options(-Wl,-gc-sections,--print-memory-usage,-Map=${PROJECT_BINARY_DIR}/${PROJECT_NAME}.map) add_link_options(-mcpu=cortex-m3 -mthumb -mthumb-interwork) add_link_options(-T ${LINKER_SCRIPT}) add_executable(${PROJECT_NAME}.elf ${SOURCES} ${LINKER_SCRIPT}) set(HEX_FILE ${PROJECT_BINARY_DIR}/${PROJECT_NAME}.hex) set(BIN_FILE ${PROJECT_BINARY_DIR}/${PROJECT_NAME}.bin) add_custom_command(TARGET ${PROJECT_NAME}.elf POST_BUILD COMMAND ${CMAKE_OBJCOPY} -Oihex $ ${HEX_FILE} COMMAND ${CMAKE_OBJCOPY} -Obinary $ ${BIN_FILE} COMMENT "Building ${HEX_FILE} Building ${BIN_FILE}")

资源文件列表:

GD32H7xx_CLion_工程模版.zip 大约有181个文件
  1. GD32H7xx_CLion_工程模版/
  2. GD32H7xx_CLion_工程模版/CMakeLists.txt 2.75KB
  3. __MACOSX/GD32H7xx_CLion_工程模版/._CMakeLists.txt 176B
  4. GD32H7xx_CLion_工程模版/.DS_Store 12KB
  5. __MACOSX/GD32H7xx_CLion_工程模版/._.DS_Store 120B
  6. GD32H7xx_CLion_工程模版/Drivers/
  7. __MACOSX/GD32H7xx_CLion_工程模版/._Drivers 176B
  8. GD32H7xx_CLion_工程模版/Core/
  9. __MACOSX/GD32H7xx_CLion_工程模版/._Core 176B
  10. GD32H7xx_CLion_工程模版/gd32h7xx.cfg 332B
  11. __MACOSX/GD32H7xx_CLion_工程模版/._gd32h7xx.cfg 176B
  12. GD32H7xx_CLion_工程模版/Middlewares/
  13. __MACOSX/GD32H7xx_CLion_工程模版/._Middlewares 176B
  14. GD32H7xx_CLion_工程模版/gd32h7xx_flash.ld 2.5KB
  15. __MACOSX/GD32H7xx_CLion_工程模版/._gd32h7xx_flash.ld 176B
  16. GD32H7xx_CLion_工程模版/Drivers/.DS_Store 10KB
  17. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/._.DS_Store 120B
  18. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/
  19. GD32H7xx_CLion_工程模版/Drivers/CMSIS/
  20. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/._CMSIS 176B
  21. GD32H7xx_CLion_工程模版/Core/main.h 1.69KB
  22. __MACOSX/GD32H7xx_CLion_工程模版/Core/._main.h 176B
  23. GD32H7xx_CLion_工程模版/Core/.DS_Store 6KB
  24. __MACOSX/GD32H7xx_CLion_工程模版/Core/._.DS_Store 120B
  25. GD32H7xx_CLion_工程模版/Core/gd32h7xx_it.h 2.48KB
  26. __MACOSX/GD32H7xx_CLion_工程模版/Core/._gd32h7xx_it.h 176B
  27. GD32H7xx_CLion_工程模版/Core/systick.c 2.49KB
  28. __MACOSX/GD32H7xx_CLion_工程模版/Core/._systick.c 176B
  29. GD32H7xx_CLion_工程模版/Core/main.c 3.34KB
  30. __MACOSX/GD32H7xx_CLion_工程模版/Core/._main.c 176B
  31. GD32H7xx_CLion_工程模版/Core/gd32h7xx_libopt.h 3.04KB
  32. __MACOSX/GD32H7xx_CLion_工程模版/Core/._gd32h7xx_libopt.h 176B
  33. GD32H7xx_CLion_工程模版/Core/gd32h7xx_it.c 3.74KB
  34. __MACOSX/GD32H7xx_CLion_工程模版/Core/._gd32h7xx_it.c 176B
  35. GD32H7xx_CLion_工程模版/Core/systick.h 1.88KB
  36. __MACOSX/GD32H7xx_CLion_工程模版/Core/._systick.h 176B
  37. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/.DS_Store 10KB
  38. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/._.DS_Store 120B
  39. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/
  40. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/
  41. GD32H7xx_CLion_工程模版/Drivers/CMSIS/.DS_Store 10KB
  42. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/._.DS_Store 120B
  43. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/
  44. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/._Include 176B
  45. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/
  46. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/._GD 176B
  47. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_dbg.h 13.5KB
  48. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_rspdif.h 24.67KB
  49. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_edout.h 5.61KB
  50. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_exti.h 34.29KB
  51. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_cpdm.h 5.75KB
  52. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_rcu.h 195.05KB
  53. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_lpdts.h 11.84KB
  54. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_i2c.h 29.48KB
  55. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_ipa.h 34.44KB
  56. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_ospim.h 7.93KB
  57. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_dci.h 16.73KB
  58. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_exmc.h 55.81KB
  59. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_syscfg.h 59.08KB
  60. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_hau.h 14.23KB
  61. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_rtc.h 57.6KB
  62. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_hwsem.h 32.09KB
  63. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_wwdgt.h 4.38KB
  64. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_misc.h 12.86KB
  65. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_spi.h 54.29KB
  66. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_axiim.h 18.88KB
  67. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_enet.h 144.09KB
  68. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_usart.h 50.23KB
  69. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_pmu.h 19.14KB
  70. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_fmc.h 38.75KB
  71. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_tmu.h 9.89KB
  72. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_tli.h 25.36KB
  73. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_ctc.h 11.23KB
  74. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_ospi.h 66.21KB
  75. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_can.h 123.94KB
  76. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_fwdgt.h 6.84KB
  77. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_trng.h 11.52KB
  78. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_sdio.h 37.86KB
  79. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_rameccmu.h 15.62KB
  80. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_efuse.h 18.19KB
  81. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_hpdf.h 61.23KB
  82. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_crc.h 6.35KB
  83. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_gpio.h 32.8KB
  84. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_cmp.h 25.62KB
  85. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_cau.h 19.57KB
  86. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_fac.h 16.64KB
  87. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_mdio.h 15.07KB
  88. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_timer.h 113.29KB
  89. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_trigsel.h 34.94KB
  90. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_adc.h 52.15KB
  91. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_mdma.h 48.25KB
  92. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_rtdec.h 10.52KB
  93. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_vref.h 4.38KB
  94. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_dma.h 117.85KB
  95. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_dac.h 20.6KB
  96. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Include/gd32h7xx_sai.h 44.12KB
  97. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_efuse.c 18.7KB
  98. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_sdio.c 38.77KB
  99. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_rameccmu.c 19.37KB
  100. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_fwdgt.c 8.08KB
  101. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_trng.c 11.47KB
  102. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cau_des.c 6.83KB
  103. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_can.c 71.2KB
  104. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_ospi.c 59.31KB
  105. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cmp.c 17.39KB
  106. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cau_aes.c 32.94KB
  107. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_gpio.c 18.05KB
  108. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_crc.c 8.94KB
  109. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_hpdf.c 63.47KB
  110. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cau_tdes.c 7.47KB
  111. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_dac.c 24.16KB
  112. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_sai.c 31.49KB
  113. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_dma.c 86.82KB
  114. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_vref.c 4.36KB
  115. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_adc.c 53.16KB
  116. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_trigsel.c 37.67KB
  117. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_timer.c 187.61KB
  118. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_mdma.c 51.31KB
  119. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_rtdec.c 14.46KB
  120. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cau.c 25.63KB
  121. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_mdio.c 13.58KB
  122. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_fac.c 22.02KB
  123. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_i2c.c 32.49KB
  124. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_rcu.c 104KB
  125. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_lpdts.c 9.63KB
  126. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_cpdm.c 11.45KB
  127. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_exti.c 8.97KB
  128. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_edout.c 7.82KB
  129. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_rspdif.c 21.75KB
  130. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_dbg.c 6.17KB
  131. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_syscfg.c 28.62KB
  132. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_hau.c 12.92KB
  133. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_exmc.c 42.69KB
  134. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_ospim.c 7.91KB
  135. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_hau_sha_md5.c 15.33KB
  136. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_dci.c 13.37KB
  137. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_ipa.c 35.03KB
  138. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_pmu.c 16.71KB
  139. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_usart.c 53.46KB
  140. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_enet.c 163.18KB
  141. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_misc.c 10.8KB
  142. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_wwdgt.c 4.21KB
  143. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_hwsem.c 9.05KB
  144. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_spi.c 51.11KB
  145. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_rtc.c 45.73KB
  146. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_ctc.c 12.77KB
  147. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_fmc.c 69.85KB
  148. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_tli.c 24.12KB
  149. GD32H7xx_CLion_工程模版/Drivers/GD32H7xx_standard_peripheral/Source/gd32h7xx_tmu.c 7.09KB
  150. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/core_cm7.h 144.34KB
  151. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/._core_cm7.h 176B
  152. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/cmsis_compiler.h 8.68KB
  153. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/._cmsis_compiler.h 176B
  154. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/mpu_armv7.h 11.42KB
  155. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/._mpu_armv7.h 176B
  156. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/cmsis_gcc.h 59.43KB
  157. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/._cmsis_gcc.h 176B
  158. GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/cmsis_version.h 1.64KB
  159. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/Include/._cmsis_version.h 176B
  160. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/.DS_Store 8KB
  161. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/._.DS_Store 120B
  162. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/
  163. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/._GD32H7xx 176B
  164. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/.DS_Store 10KB
  165. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/._.DS_Store 120B
  166. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Include/
  167. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/._Include 176B
  168. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/
  169. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/._Source 176B
  170. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Include/gd32h7xx.h 33.45KB
  171. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Include/._gd32h7xx.h 176B
  172. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Include/system_gd32h7xx.h 2.32KB
  173. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Include/._system_gd32h7xx.h 176B
  174. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/.DS_Store 8KB
  175. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/._.DS_Store 120B
  176. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/ARM/
  177. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/._ARM 176B
  178. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/system_gd32h7xx.c 23.73KB
  179. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/._system_gd32h7xx.c 176B
  180. GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/ARM/startup_gd32h7xx.s 36.86KB
  181. __MACOSX/GD32H7xx_CLion_工程模版/Drivers/CMSIS/GD/GD32H7xx/Source/ARM/._startup_gd32h7xx.s 176B
0评论
提交 加载更多评论
其他资源 简易BootLoader配套的APP资源
简易BootLoader配套的APP资源西西菜鸟
基于电力系统潮流计算的IEEE14课程设计matlab程序(含牛顿拉夫逊法和PQ分解法进行极坐标分析)
基于IEEE14设计的matlab程序代码
小熊猫DevC++6.7.5.zip
版本为6.7.5, 目前我认为最好用的c++编译器
网络,HCIA培训PPT
用于华为认证数通领域初级学习PPT
pytorch实现手动数字识别
pytorch实现手动数字识别,文章参考 https://blog.csdn.net/fengzhongye51460/article/details/140688107, 学些pytorch神经网络的简单的入门例子
EasyPR-Java 依赖的相关可用jar包下载
EasyPR-Java是一个基于Java的开源车牌识别系统,相关依赖jar包下载:javacpp-0.11.jar javacv-0.11.jar opencv-2.4.11-0.11.jar opencv-2.4.11 它的核心目标是简化计算机视觉技术在车牌识别中的应用。这个jar包集合包含了几个关键组件,对于理解EasyPR-Java的工作原理及其在实际项目中的应用至关重要。
个人简历Word模板+自我介绍PPT模板.zip
个人简历Word模板10套 自我介绍PPT模板4套 有需要的朋友请自取,如果我的模板帮助到你,别忘了点个赞+关注哦,感谢 /抱拳
个人简历Word模板+自我介绍PPT模板.zip
yolov5////////////
yolov5////////////
yolov5//////////// yolov5//////////// yolov5////////////