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 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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. # 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. # Precompiled Headers
  51. *.gch
  52. *.pch
  53. # Compiled Dynamic libraries
  54. *.so
  55. *.dylib
  56. *.dll
  57. # Fortran module files
  58. *.mod
  59. *.smod
  60. # Compiled Static libraries
  61. *.lai
  62. *.la
  63. *.a
  64. *.lib
  65. # Executables
  66. *.exe
  67. *.out
  68. *.app
  69. #
  70. # C
  71. #
  72. # Object files
  73. *.o
  74. *.ko
  75. *.obj
  76. *.elf
  77. # Precompiled Headers
  78. *.gch
  79. *.pch
  80. # Libraries
  81. *.lib
  82. *.a
  83. *.la
  84. *.lo
  85. # Shared objects (inc. Windows DLLs)
  86. *.dll
  87. *.so
  88. *.so.*
  89. *.dylib
  90. # Executables
  91. *.exe
  92. *.out
  93. *.app
  94. *.i*86
  95. *.x86_64
  96. *.hex
  97. # Debug files
  98. *.dSYM/
  99. *.su
  100. #PlatformIO files/dirs
  101. .pioenvs
  102. .piolib
  103. #Visual Studio
  104. *.sln
  105. *.vcxproj
  106. *.vcxproj.filters
  107. Marlin/Release/
  108. Marlin/Debug/
  109. Marlin/__vm/
  110. Marlin/.vs/