Skip to content

Commit 12f2e1d

Browse files
committed
no message
1 parent 0e50318 commit 12f2e1d

File tree

1,891 files changed

+1428161
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,891 files changed

+1428161
-0
lines changed

.editorconfig

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[{*.patch,syntax_test_*}]
5+
trim_trailing_whitespace = false
6+
7+
[{*.c,*.cpp,*.h}]
8+
charset = utf-8
9+
10+
[{*.c,*.cpp,*.h,Makefile}]
11+
trim_trailing_whitespace = true
12+
insert_final_newline = true
13+
end_of_line = lf
14+
indent_style = space
15+
indent_size = 2
16+
17+
[{*.py,*.conf,*.sublime-project}]
18+
indent_style = tab
19+
indent_size = 4

.gitattributes

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Set the default behavior, in case people don't have core.autocrlf set.
2+
* text=auto
3+
4+
# Files with Unix line endings
5+
*.c text eol=lf
6+
*.cpp text eol=lf
7+
*.h text eol=lf
8+
*.ino text eol=lf
9+
*.py text eol=lf
10+
*.sh text eol=lf
11+
*.scad text eol=lf
12+
13+
# Files with native line endings
14+
# *.sln text
15+
16+
# Binary files
17+
*.png binary
18+
*.jpg binary
19+
*.fon binary

.gitignore

Lines changed: 186 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
#
2+
# Marlin 3D Printer Firmware
3+
# Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4+
#
5+
# Based on Sprinter and grbl.
6+
# Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
20+
#
21+
22+
# Our automatic versioning scheme generates the following file
23+
# NEVER put it in the repository
24+
_Version.h
25+
26+
#
27+
# OS
28+
#
29+
applet/
30+
*.DS_Store
31+
32+
#
33+
# Misc
34+
#
35+
*~
36+
*.orig
37+
*.rej
38+
*.bak
39+
*.idea
40+
*.s
41+
*.i
42+
*.ii
43+
*.swp
44+
tags
45+
46+
#
47+
# C++
48+
#
49+
# Compiled Object files
50+
*.slo
51+
*.lo
52+
*.o
53+
*.obj
54+
*.ino.cpp
55+
56+
# Precompiled Headers
57+
*.gch
58+
*.pch
59+
60+
# Compiled Dynamic libraries
61+
*.so
62+
*.dylib
63+
*.dll
64+
65+
# Fortran module files
66+
*.mod
67+
*.smod
68+
69+
# Compiled Static libraries
70+
*.lai
71+
*.la
72+
*.a
73+
*.lib
74+
75+
# Executables
76+
*.exe
77+
*.out
78+
*.app
79+
80+
81+
#
82+
# C
83+
#
84+
# Object files
85+
*.o
86+
*.ko
87+
*.obj
88+
*.elf
89+
90+
# Precompiled Headers
91+
*.gch
92+
*.pch
93+
94+
# Libraries
95+
*.lib
96+
*.a
97+
*.la
98+
*.lo
99+
100+
# Shared objects (inc. Windows DLLs)
101+
*.dll
102+
*.so
103+
*.so.*
104+
*.dylib
105+
106+
# Executables
107+
*.exe
108+
*.out
109+
*.app
110+
*.i*86
111+
*.x86_64
112+
*.hex
113+
114+
# Debug files
115+
*.dSYM/
116+
*.su
117+
118+
# PlatformIO files/dirs
119+
.pio*
120+
.pioenvs
121+
.piolibdeps
122+
.clang_complete
123+
.gcc-flags.json
124+
/lib/
125+
126+
# Workaround for Deviot+platformio quirks
127+
Marlin/lib
128+
Marlin/platformio.ini
129+
Marlin/*/platformio.ini
130+
Marlin/*/*/platformio.ini
131+
Marlin/*/*/*/platformio.ini
132+
Marlin/*/*/*/*/platformio.ini
133+
Marlin/.travis.yml
134+
Marlin/*/.travis.yml
135+
Marlin/*/*/.travis.yml
136+
Marlin/*/*/*/.travis.yml
137+
Marlin/*/*/*/*/.travis.yml
138+
Marlin/.gitignore
139+
Marlin/*/.gitignore
140+
Marlin/*/*/.gitignore
141+
Marlin/*/*/*/.gitignore
142+
Marlin/*/*/*/*/.gitignore
143+
Marlin/readme.txt
144+
Marlin/*/readme.txt
145+
Marlin/*/*/readme.txt
146+
Marlin/*/*/*/readme.txt
147+
Marlin/*/*/*/*/readme.txt
148+
149+
# Secure Credentials
150+
Configuration_Secure.h
151+
152+
#Visual Studio
153+
*.sln
154+
*.vcxproj
155+
*.vcxproj.user
156+
*.vcxproj.filters
157+
Release/
158+
Debug/
159+
__vm/
160+
.vs/
161+
vc-fileutils.settings
162+
163+
#Visual Studio Code
164+
.vscode
165+
.vscode/.browse.c_cpp.db*
166+
.vscode/c_cpp_properties.json
167+
.vscode/launch.json
168+
.vscode/*.db
169+
170+
#cmake
171+
CMakeLists.txt
172+
src/CMakeLists.txt
173+
CMakeListsPrivate.txt
174+
175+
#CLion
176+
cmake-build-*
177+
178+
#Eclipse
179+
.project
180+
.cproject
181+
.pydevproject
182+
.settings
183+
.classpath
184+
185+
#Python
186+
__pycache__

0 commit comments

Comments
 (0)