Skip to content

Commit 3fe7e79

Browse files
committed
Marlin Base Configurations
0 parents  commit 3fe7e79

File tree

637 files changed

+2396476
-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.

637 files changed

+2396476
-0
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[{*.h,*.md}]
5+
charset = utf-8
6+
trim_trailing_whitespace = true
7+
insert_final_newline = true
8+
end_of_line = lf
9+
indent_style = space
10+
indent_size = 2
11+
12+
#[{*.h}]

.gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
#
2+
# OS
3+
#
4+
applet/
5+
*.DS_Store
6+
7+
# Prerequisites
8+
*.d
9+
10+
# Compiled Object files
11+
*.slo
12+
*.lo
13+
*.o
14+
*.obj
15+
16+
# Precompiled Headers
17+
*.gch
18+
*.pch
19+
20+
# Compiled Dynamic libraries
21+
*.so
22+
*.dylib
23+
*.dll
24+
25+
# Fortran module files
26+
*.mod
27+
*.smod
28+
29+
# Compiled Static libraries
30+
*.lai
31+
*.la
32+
*.a
33+
*.lib
34+
35+
# Executables
36+
*.exe
37+
*.out
38+
*.app
39+
40+
# System files
41+
.DS_Store

LICENSE

+674
Large diffs are not rendered by default.

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Configurations
2+
Pre-tested Configurations for Marlin Firmware 2.1.2
3+
4+
Marlin Firmware is configured using two files:
5+
6+
- `Configuration.h` contains core configuration options like machine geometry.
7+
- `Configuration_adv.h` contains optional settings for advanced and low level features.
8+
9+
For Graphical LCD these files may also be included:
10+
11+
- `_Bootscreen.h` provides the bitmap for a custom Boot Screen.
12+
- `_Statusscreen.h` provides bitmaps to customize the Status Screen.
13+
14+
See the [Configuration page](https://marlinfw.org/docs/configuration/configuration.html) for more information about configuration and individual configuration options.

0 commit comments

Comments
 (0)