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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  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. #
  42. # C++
  43. #
  44. # Compiled Object files
  45. *.slo
  46. *.lo
  47. *.o
  48. *.obj
  49. # Precompiled Headers
  50. *.gch
  51. *.pch
  52. # Compiled Dynamic libraries
  53. *.so
  54. *.dylib
  55. *.dll
  56. # Fortran module files
  57. *.mod
  58. *.smod
  59. # Compiled Static libraries
  60. *.lai
  61. *.la
  62. *.a
  63. *.lib
  64. # Executables
  65. *.exe
  66. *.out
  67. *.app
  68. #
  69. # C
  70. #
  71. # Object files
  72. *.o
  73. *.ko
  74. *.obj
  75. *.elf
  76. # Precompiled Headers
  77. *.gch
  78. *.pch
  79. # Libraries
  80. *.lib
  81. *.a
  82. *.la
  83. *.lo
  84. # Shared objects (inc. Windows DLLs)
  85. *.dll
  86. *.so
  87. *.so.*
  88. *.dylib
  89. # Executables
  90. *.exe
  91. *.out
  92. *.app
  93. *.i*86
  94. *.x86_64
  95. *.hex
  96. # Debug files
  97. *.dSYM/
  98. *.su