My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

Marlin.ino 1.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. /**
  23. * About Marlin
  24. *
  25. * This firmware is a mashup between Sprinter and grbl.
  26. * - https://github.com/kliment/Sprinter
  27. * - https://github.com/simen/grbl/tree
  28. */
  29. #include "MarlinConfig.h"
  30. #if ENABLED(ULTRA_LCD)
  31. #if ENABLED(LCD_I2C_TYPE_PCF8575)
  32. #include <Wire.h>
  33. #include <LiquidCrystal_I2C.h>
  34. #elif ENABLED(LCD_I2C_TYPE_MCP23017) || ENABLED(LCD_I2C_TYPE_MCP23008)
  35. #include <Wire.h>
  36. #include <LiquidTWI2.h>
  37. #elif ENABLED(LCM1602)
  38. #include <Wire.h>
  39. #include <LCD.h>
  40. #include <LiquidCrystal_I2C.h>
  41. #elif ENABLED(DOGLCD)
  42. #include <U8glib.h> // library for graphics LCD by Oli Kraus (https://github.com/olikraus/U8glib_Arduino)
  43. #else
  44. #include <LiquidCrystal.h> // library for character LCD
  45. #endif
  46. #endif
  47. #if HAS_DIGIPOTSS
  48. #include <SPI.h>
  49. #endif
  50. #if ENABLED(DIGIPOT_I2C)
  51. #include <Wire.h>
  52. #endif
  53. #if ENABLED(HAVE_TMCDRIVER)
  54. #include <SPI.h>
  55. #include <TMC26XStepper.h>
  56. #endif
  57. #if ENABLED(HAVE_TMC2130)
  58. #include <SPI.h>
  59. #include <TMC2130Stepper.h>
  60. #endif
  61. #if ENABLED(HAVE_L6470DRIVER)
  62. #include <SPI.h>
  63. #include <L6470.h>
  64. #endif