Skip to content

Commit cea006b

Browse files
committed
init
0 parents  commit cea006b

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

.gitignore

+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
.idea/
2+
# Python virtual environment for DFU images
3+
.venv/
4+
5+
# CMake
6+
cmake-build-*
7+
cmake-*/
8+
CMakeFiles
9+
**/CMakeCache.txt
10+
cmake_install.cmake
11+
Makefile
12+
build
13+
_build*/
14+
tools
15+
16+
# Resulting binary files
17+
*.a
18+
*.so
19+
*.s
20+
*.hex
21+
*.bin
22+
!bootloader/bootloader-5.0.4.bin
23+
*.map
24+
*.out
25+
pinetime*.cbp
26+
27+
# InfiniTime's files
28+
core
29+
sdk
30+
src/Version.h
31+
docker/post_build.sh
32+
Testing/Temporary/
33+
34+
# Linux
35+
**/.directory
36+
**/*.swp
37+
38+
# OSX/MacOS
39+
**/.DS_Store
40+
41+
# Windows
42+
**/thumbs.db
43+
44+
#VSCODE
45+
.vscode/.cortex-debug.registers.state.json
46+
.vscode/.cortex-debug.peripherals.state.json
47+
48+
#build files
49+
src/nRF5_SDK_15.3.0_59ac345
50+
src/arm-none-eabi
51+

0 commit comments

Comments
 (0)