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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. // Our automatic versioning scheme generates the following file
  23. // NEVER put it in the repository
  24. _Version.h
  25. //
  26. // OS
  27. //
  28. applet/
  29. *.DS_Store
  30. //
  31. // Misc
  32. //
  33. *~
  34. *.orig
  35. *.rej
  36. *.bak
  37. *.idea
  38. *.s
  39. *.i
  40. *.ii
  41. *.swp
  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