851c3db56e
- 删除冗余文件:main_backup/main_minimal/main_full、GD32F4xx_AddOn_Temp/、GD32F4xx_Custom_Backup/、GD32F4xx_Official/ - 删除无关工具:read_pdf.py、openocd_test.txt、version.txt - 重构 main.cpp:去除 STEP 机制,简化为线性启动流程 - 清理 CMakeLists.txt:移除 usart0.c 引用、死代码、冗余 REMOVE_ITEM - 修正 config.h SystemCoreClock 为 168MHz - 修复 gd32f4xx_it.cpp 中已删除的 main.h 引用
42 lines
523 B
Plaintext
42 lines
523 B
Plaintext
# ============ 构建产物 ============
|
|
build/
|
|
cmake-build-*/
|
|
out/
|
|
output/
|
|
|
|
# ============ IDE / 编辑器 ============
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# ============ Python 缓存 ============
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# ============ 编译中间文件 ============
|
|
*.o
|
|
*.d
|
|
*.obj
|
|
*.dep
|
|
*.map
|
|
*.su
|
|
*.lst
|
|
|
|
# ============ 烧录相关临时文件 ============
|
|
openocd_temp.cfg
|
|
flash_temp.cfg
|
|
|
|
# ============ 可执行文件/库文件 ============
|
|
*.elf
|
|
*.hex
|
|
*.bin
|
|
*.exe
|
|
|
|
# ============ 配置文件本地修改 ============
|
|
/config/*.local.*
|