adding gitignore and cpu controller
parent
1273d2f88a
commit
c4eeb98757
@ -0,0 +1,91 @@
|
||||
# ============================================================
|
||||
# Code Composer Studio workspace files
|
||||
# ============================================================
|
||||
|
||||
.metadata/
|
||||
RemoteSystemsTempFiles/
|
||||
dvt/
|
||||
.jxbrowser-data/
|
||||
|
||||
# CCS-generated temporary project information
|
||||
**/.xdchelp
|
||||
**/.config/
|
||||
**/.launches/
|
||||
|
||||
# CCS Theia / language-server caches
|
||||
**/.cache/
|
||||
**/.clangd/
|
||||
**/compile_commands.json
|
||||
|
||||
|
||||
# ============================================================
|
||||
# CCS build configurations
|
||||
# ============================================================
|
||||
|
||||
**/Debug/
|
||||
**/Release/
|
||||
|
||||
# Common C2000 build configuration names
|
||||
**/RAM/
|
||||
**/FLASH/
|
||||
**/Flash/
|
||||
**/CPU1_RAM/
|
||||
**/CPU1_FLASH/
|
||||
**/CPU2_RAM/
|
||||
**/CPU2_FLASH/
|
||||
|
||||
|
||||
# ============================================================
|
||||
# TI C2000 compiler and linker outputs
|
||||
# ============================================================
|
||||
|
||||
*.obj
|
||||
*.out
|
||||
*.map
|
||||
*.hex
|
||||
*.bin
|
||||
*.elf
|
||||
|
||||
*.d
|
||||
*.dep
|
||||
*.pp
|
||||
*.lst
|
||||
*.listing
|
||||
*.opt
|
||||
|
||||
# Code-generation and coverage artifacts
|
||||
*.gcda
|
||||
*.gcno
|
||||
*.profraw
|
||||
*.profdata
|
||||
|
||||
|
||||
# ============================================================
|
||||
# Operating-system and editor files
|
||||
# ============================================================
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Windows
|
||||
Thumbs.db
|
||||
Desktop.ini
|
||||
|
||||
# Editors
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
.vscode/
|
||||
.idea/
|
||||
|
||||
|
||||
# ============================================================
|
||||
# Logs and temporary files
|
||||
# ============================================================
|
||||
|
||||
*.log
|
||||
*.tmp
|
||||
*.temp
|
||||
*.bak
|
||||
Loading…
Reference in New Issue