Files
2026-09-08 10:02:27 +08:00

117 lines
3.5 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# =============================================================================
# AC701N (杰理 BR28) SDK - Git 忽略规则
# =============================================================================
# -----------------------------------------------------------------------------
# 编译输出目录(CodeBlocks / Makefile 生成)
# -----------------------------------------------------------------------------
obj/
**/obj/
*.o
*.d
*.dep
*.obj
# -----------------------------------------------------------------------------
# CodeBlocks 工程临时文件(保留 AC701N.cbp
# -----------------------------------------------------------------------------
*.depend
*.layout
*.cbTemp
*.workspace
# -----------------------------------------------------------------------------
# 链接 / 编译中间产物(每次 make / CodeBlocks 编译都会再生成)
# 注意:不要用 cpu/*/tools/*.bin —— ota.bin、eq_cfg_hw_less.bin 等是 SDK 要入库的
# -----------------------------------------------------------------------------
cpu/*/sdk.ld
cpu/*/sdk_used_list.used
cpu/*/tools/download.bat
cpu/*/tools/download.sh
cpu/*/tools/isd_config.ini
cpu/*/tools/sdk.elf
cpu/*/tools/sdk.elf.*
cpu/*/tools/sdk.map
cpu/*/tools/rom.lst
cpu/*/tools/app.bin
cpu/*/tools/data_code.bin
cpu/*/tools/p11_code.bin
cpu/*/tools/*.bc
cpu/*/tools/aac.bin
cpu/*/tools/aec.bin
cpu/*/tools/aptx.bin
cpu/*/tools/eq_cfg_hw.bin
# 打包下载目录:每次烧录会拷贝固件、改写 .bat(可能注入 -key),不要入库
cpu/*/tools/download/**/*.bin
cpu/*/tools/download/**/*.fw
cpu/*/tools/download/**/*.ufw
cpu/*/tools/download/**/*.hex
cpu/*/tools/download/**/*.bat
# 配置工具本地数据库
cpu/*/tools/local.db
# -----------------------------------------------------------------------------
# WorkBuddy / Cursor 本地会话(记忆、产物、规则缓存)
# -----------------------------------------------------------------------------
.workbuddy/
.cursor/
# -----------------------------------------------------------------------------
# IDE / 编辑器
# -----------------------------------------------------------------------------
.vscode/
.idea/
*.user
*.suo
*.ncb
*.aps
*.opt
*.plg
*.clw
*.pdb
*.idb
*.ilk
# -----------------------------------------------------------------------------
# 操作系统杂项
# -----------------------------------------------------------------------------
.DS_Store
.DS_Store?
._*
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
# -----------------------------------------------------------------------------
# 临时 / 备份 / 日志
# -----------------------------------------------------------------------------
*~
*.tmp
*.temp
*.bak
*.swp
*.swo
*.log
*.orig
*.rej
# -----------------------------------------------------------------------------
# Release 交付产物(由 tools/package_release.py 生成,勿提交)
# -----------------------------------------------------------------------------
release/
Release_Project_*/
# -----------------------------------------------------------------------------
# 注意:以下内容请保留上传,不要忽略
# - cpu/br28/liba/*.a SDK 预编译库
# - apps/usr_le_code/lib/*.a 见宝 BLE 预编译库(无 intentional 改动不要提交)
# - AC701N.cbp / Makefile 工程文件
# - cpu/br28/tools/*.exe 等 下载/打包工具
# - cpu/br28/tools/*.bin SDK 资源(ota.bin 等)
# - include_lib/ / apps/ 头文件与应用源码
# - Doc/ 需求规格书
# -----------------------------------------------------------------------------