|
@@ -1,20 +1,117 @@
|
|
1
|
+/**
|
|
2
|
+ * Marlin 3D Printer Firmware
|
|
3
|
+ * Copyright (C) 2016 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
|
+
|
1
|
23
|
// Our automatic versioning scheme generates the following file
|
2
|
24
|
// NEVER put it in the repository
|
3
|
25
|
_Version.h
|
4
|
26
|
|
5
|
|
-// All of the following OS, IDE and compiler generated file
|
6
|
|
-// references should be moved from this file
|
7
|
|
-// They are needed, but they belong in your global .gitignore
|
8
|
|
-// rather than in a per-project file such as this
|
9
|
|
-
|
10
|
|
-*.o
|
|
27
|
+//
|
|
28
|
+// OS
|
|
29
|
+//
|
11
|
30
|
applet/
|
|
31
|
+*.DS_Store
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+//
|
|
35
|
+// Misc
|
|
36
|
+//
|
12
|
37
|
*~
|
13
|
38
|
*.orig
|
14
|
39
|
*.rej
|
15
|
40
|
*.bak
|
16
|
|
-*.DS_Store
|
17
|
41
|
*.idea
|
18
|
42
|
*.s
|
19
|
43
|
*.i
|
20
|
44
|
*.ii
|
|
45
|
+*.swp
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+//
|
|
49
|
+// C++
|
|
50
|
+//
|
|
51
|
+# Compiled Object files
|
|
52
|
+*.slo
|
|
53
|
+*.lo
|
|
54
|
+*.o
|
|
55
|
+*.obj
|
|
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
|