Skip to content

Commit 573296b

Browse files
committed
Add .gitignore
1 parent f70f3f5 commit 573296b

File tree

1 file changed

+65
-0
lines changed

1 file changed

+65
-0
lines changed

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
*.pyc
2+
*.map
3+
*.dblite
4+
*.elf
5+
*.bin
6+
*.hex
7+
*.axf
8+
*.exe
9+
*.pdb
10+
*.idb
11+
*.ilk
12+
*.old
13+
*.crf
14+
build
15+
Debug
16+
rtthread
17+
settings
18+
documentation/html
19+
*~
20+
*.o
21+
*.obj
22+
*.bak
23+
*.dep
24+
*.lib
25+
*.a
26+
*.i
27+
*.d
28+
*.dfinish
29+
*.su
30+
#source insight 4 project files
31+
*.si4project
32+
packages
33+
dist
34+
rt-studio-project
35+
cconfig.h
36+
GPUCache
37+
38+
#cscope files
39+
cscope.*
40+
ncscope.*
41+
42+
#ctag files
43+
tags
44+
45+
.idea
46+
**/.cache/
47+
.vscode
48+
*.code-workspace
49+
*.eide.*
50+
.history
51+
CMakeLists.txt
52+
cmake-build-debug
53+
*.mk
54+
55+
# vDSO
56+
vdso_sys.os
57+
vdso.lds
58+
59+
# cherryusb libraries
60+
!components/drivers/usb/cherryusb/port/pusb2/*.a
61+
!components/drivers/usb/cherryusb/port/xhci/phytium/*.a
62+
63+
# stm32cubemx
64+
**/CubeMX_Config/Drivers/
65+
**/CubeMX_Config/MDK-ARM/

0 commit comments

Comments
 (0)