36 lines
346 B
Plaintext
36 lines
346 B
Plaintext
# Ignore everything by default
|
|
*
|
|
|
|
# Allow essential files and directories
|
|
!/.gitignore
|
|
!*.ioc
|
|
!Core/Src/**
|
|
!Core/Inc/**
|
|
!Drivers/**
|
|
|
|
# Ignore build artifacts
|
|
Debug/
|
|
Release/
|
|
build/
|
|
*.elf
|
|
*.hex
|
|
*.bin
|
|
*.map
|
|
*.o
|
|
*.d
|
|
*.lst
|
|
|
|
# Ignore IDE-specific files
|
|
.cproject
|
|
.project
|
|
.settings/
|
|
*.launch
|
|
|
|
# Editor/OS junk
|
|
*~
|
|
*.swp
|
|
*.bak
|
|
*.tmp
|
|
.DS_Store
|
|
Thumbs.db
|