Skip to content

Commit f01ee75

Browse files
committed
1 parent b3af970 commit f01ee75

File tree

75 files changed

+420
-177
lines changed

Some content is hidden

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

75 files changed

+420
-177
lines changed

.gitattributes

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,19 @@
1-
# Auto detect text files and perform LF normalization
1+
# Set the default behavior, in case people don't have core.autocrlf set.
22
* 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

+149-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,151 @@
1-
.pio
2-
.pioenvs
3-
.piolibdeps
1+
#
2+
# Marlin 3D Printer Firmware
3+
# Copyright (C) 2017 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 <http://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+
#
34+
# Misc
35+
#
36+
*~
37+
*.orig
38+
*.rej
39+
*.bak
40+
*.idea
41+
*.s
42+
*.i
43+
*.ii
44+
*.swp
45+
tags
46+
47+
#
48+
# C++
49+
#
50+
# Compiled Object files
51+
*.slo
52+
*.lo
53+
*.o
54+
*.obj
55+
*.ino.cpp
56+
57+
# Precompiled Headers
58+
*.gch
59+
*.pch
60+
61+
# Compiled Dynamic libraries
62+
*.so
63+
*.dylib
64+
*.dll
65+
66+
# Fortran module files
67+
*.mod
68+
*.smod
69+
70+
# Compiled Static libraries
71+
*.lai
72+
*.la
73+
*.a
74+
*.lib
75+
76+
# Executables
77+
*.exe
78+
*.out
79+
*.app
80+
81+
82+
#
83+
# C
84+
#
85+
# Object files
86+
*.o
87+
*.ko
88+
*.obj
89+
*.elf
90+
91+
# Precompiled Headers
92+
*.gch
93+
*.pch
94+
95+
# Libraries
96+
*.lib
97+
*.a
98+
*.la
99+
*.lo
100+
101+
# Shared objects (inc. Windows DLLs)
102+
*.dll
103+
*.so
104+
*.so.*
105+
*.dylib
106+
107+
# Executables
108+
*.exe
109+
*.out
110+
*.app
111+
*.i*86
112+
*.x86_64
113+
*.hex
114+
115+
# Debug files
116+
*.dSYM/
117+
*.su
118+
119+
# PlatformIO files/dirs
4120
.clang_complete
5121
.gcc-flags.json
122+
.pio*
123+
.pioenvs
124+
.piolibdeps
125+
lib/readme.txt
126+
127+
#Visual Studio
128+
*.sln
129+
*.vcxproj
130+
*.vcxproj.user
131+
*.vcxproj.filters
132+
Release/
133+
Debug/
134+
__vm/
135+
.vs/
136+
vc-fileutils.settings
137+
138+
#Visual Studio Code
139+
.vscode
140+
.vscode/.browse.c_cpp.db*
141+
.vscode/c_cpp_properties.json
142+
.vscode/launch.json
143+
.vscode/*.db
144+
145+
#cmake
146+
CMakeLists.txt
147+
Marlin/CMakeLists.txt
148+
CMakeListsPrivate.txt
149+
150+
#CLion
151+
cmake-build-*

Marlin/Configuration.h

+1
Original file line numberDiff line numberDiff line change
@@ -1120,6 +1120,7 @@
11201120

11211121
#if ENABLED(LEVEL_BED_CORNERS)
11221122
#define LEVEL_CORNERS_INSET 30 // (mm) An inset for corner leveling
1123+
#define LEVEL_CORNERS_Z_HOP 4.0 // (mm) Move nozzle up before moving between corners
11231124
//#define LEVEL_CENTER_TOO // Move to the center after the last corner
11241125
#endif
11251126

0 commit comments

Comments
 (0)