My Marlin configs for Fabrikator Mini and CTC i3 Pro B
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.gitignore 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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 <http://www.gnu.org/licenses/>.
  20. #
  21. # Our automatic versioning scheme generates the following file
  22. # NEVER put it in the repository
  23. _Version.h
  24. #
  25. # OS
  26. #
  27. applet/
  28. *.DS_Store
  29. #
  30. # Misc
  31. #
  32. *~
  33. *.orig
  34. *.rej
  35. *.bak
  36. *.idea
  37. *.s
  38. *.i
  39. *.ii
  40. *.swp
  41. tags
  42. #
  43. # C++
  44. #
  45. # Compiled Object files
  46. *.slo
  47. *.lo
  48. *.o
  49. *.obj
  50. *.ino.cpp
  51. # Precompiled Headers
  52. *.gch
  53. *.pch
  54. # Compiled Dynamic libraries
  55. *.so
  56. *.dylib
  57. *.dll
  58. # Fortran module files
  59. *.mod
  60. *.smod
  61. # Compiled Static libraries
  62. *.lai
  63. *.la
  64. *.a
  65. *.lib
  66. # Executables
  67. *.exe
  68. *.out
  69. *.app
  70. #
  71. # C
  72. #
  73. # Object files
  74. *.o
  75. *.ko
  76. *.obj
  77. *.elf
  78. # Precompiled Headers
  79. *.gch
  80. *.pch
  81. # Libraries
  82. *.lib
  83. *.a
  84. *.la
  85. *.lo
  86. # Shared objects (inc. Windows DLLs)
  87. *.dll
  88. *.so
  89. *.so.*
  90. *.dylib
  91. # Executables
  92. *.exe
  93. *.out
  94. *.app
  95. *.i*86
  96. *.x86_64
  97. *.hex
  98. # Debug files
  99. *.dSYM/
  100. *.su
  101. # PlatformIO files/dirs
  102. .pio*
  103. .pioenvs
  104. .piolibdeps
  105. .clang_complete
  106. .gcc-flags.json
  107. /lib/
  108. # Workaround for Deviot+platformio quirks
  109. Marlin/lib
  110. Marlin/platformio.ini
  111. Marlin/*/platformio.ini
  112. Marlin/*/*/platformio.ini
  113. Marlin/*/*/*/platformio.ini
  114. Marlin/*/*/*/*/platformio.ini
  115. Marlin/.travis.yml
  116. Marlin/*/.travis.yml
  117. Marlin/*/*/.travis.yml
  118. Marlin/*/*/*/.travis.yml
  119. Marlin/*/*/*/*/.travis.yml
  120. Marlin/.gitignore
  121. Marlin/*/.gitignore
  122. Marlin/*/*/.gitignore
  123. Marlin/*/*/*/.gitignore
  124. Marlin/*/*/*/*/.gitignore
  125. Marlin/readme.txt
  126. Marlin/*/readme.txt
  127. Marlin/*/*/readme.txt
  128. Marlin/*/*/*/readme.txt
  129. Marlin/*/*/*/*/readme.txt
  130. # Secure Credentials
  131. Configuration_Secure.h
  132. #Visual Studio
  133. *.sln
  134. *.vcxproj
  135. *.vcxproj.user
  136. *.vcxproj.filters
  137. Release/
  138. Debug/
  139. __vm/
  140. .vs/
  141. vc-fileutils.settings
  142. #Visual Studio Code
  143. .vscode
  144. .vscode/.browse.c_cpp.db*
  145. .vscode/c_cpp_properties.json
  146. .vscode/launch.json
  147. .vscode/*.db
  148. #cmake
  149. CMakeLists.txt
  150. src/CMakeLists.txt
  151. CMakeListsPrivate.txt
  152. #CLion
  153. cmake-build-*
  154. #Eclipse
  155. .project
  156. .cproject
  157. .pydevproject
  158. .settings
  159. .classpath
  160. #Python
  161. __pycache__