diff options
author | diffstorm <erayozturk1@gmail.com> | 2024-05-31 14:34:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-31 14:34:06 +0300 |
commit | 6c90ce580d46e7e922b35b29a832f98324b75157 (patch) | |
tree | f381cee21c5a0f66ff65324e84496a9ecf6d9db9 | |
parent | 05b24f9fb5b6899dd426bc579141bb3b8ca1681b (diff) | |
parent | 5db49b3de977126402dae1edb6a66fde4c7816c7 (diff) | |
download | gitignore-6c90ce580d46e7e922b35b29a832f98324b75157.tar.gz gitignore-6c90ce580d46e7e922b35b29a832f98324b75157.zip |
Merge pull request #1 from diffstorm/diffstorm-create-IAR.gitignore
Create IAR.gitignore
-rw-r--r-- | IAR.gitignore | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/IAR.gitignore b/IAR.gitignore new file mode 100644 index 00000000..a6f6f775 --- /dev/null +++ b/IAR.gitignore @@ -0,0 +1,47 @@ +# Compiled binaries
+*.o
+*.bin
+*.elf
+*.hex
+*.map
+*.out
+*.obj
+
+# Trash
+*.bak
+thumbs.db
+*.~*
+
+# IAR Settings
+**/settings/*.crun
+**/settings/*.dbgdt
+**/settings/*.cspy
+**/settings/*.cspy.*
+**/settings/*.xcl
+**/settings/*.dni
+**/settings/*.wsdt
+**/settings/*.wspos
+
+# IAR Debug Exe
+**/Exe/*.sim
+
+# IAR Debug Obj
+**/Obj/*.pbd
+**/Obj/*.pbd.*
+**/Obj/*.pbi
+**/Obj/*.pbi.*
+
+# IAR project "Debug" directory
+Debug/
+
+# IAR project "Release" directory
+Release/
+
+# IAR project settings directory
+settings/
+
+# IAR backup files
+Backup*
+
+# IAR .dep files
+*.dep
\ No newline at end of file |