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.

pins_SILVER_GATE.h 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #if !defined(__AVR_ATmega1281__) && !defined(__AVR_ATmega2561__)
  23. #error Oops! Make sure you have 'Silvergate' selected from the 'Tools -> Boards' menu.
  24. #endif
  25. #ifndef BOARD_NAME
  26. #define BOARD_NAME "Silver Gate"
  27. #endif
  28. #define LARGE_FLASH true
  29. #define X_STEP_PIN 43
  30. #define X_DIR_PIN 44
  31. #define X_ENABLE_PIN 42
  32. #define X_MIN_PIN 31
  33. #define X_MAX_PIN 34
  34. #define Y_STEP_PIN 40
  35. #define Y_DIR_PIN 41
  36. #define Y_ENABLE_PIN 39
  37. #define Y_MIN_PIN 32
  38. #define Y_MAX_PIN 35
  39. #define Z_STEP_PIN 13
  40. #define Z_DIR_PIN 38
  41. #define Z_ENABLE_PIN 14
  42. #define Z_MIN_PIN 33
  43. #define Z_MAX_PIN 36
  44. #define E0_STEP_PIN 27
  45. #define E0_DIR_PIN 37
  46. #define E0_ENABLE_PIN 45
  47. #define SDSS 16
  48. #ifndef FIL_RUNOUT_PIN
  49. #define FIL_RUNOUT_PIN 34 // X_MAX unless overridden
  50. #endif
  51. #define FAN_PIN 5
  52. #define HEATER_0_PIN 7
  53. #define E0_AUTO_FAN_PIN 3
  54. #define CONTROLLER_FAN_PIN 2
  55. #define TEMP_0_PIN 7 // Analog Input
  56. #define HEATER_BED_PIN 8
  57. #define TEMP_BED_PIN 6
  58. #if ENABLED(DOGLCD)
  59. #if ENABLED(U8GLIB_ST7920) // SPI GLCD 12864 ST7920
  60. #define LCD_PINS_RS 30
  61. #define LCD_PINS_ENABLE 20
  62. #define LCD_PINS_D4 25
  63. #define BEEPER_PIN 29
  64. #define BTN_EN1 19
  65. #define BTN_EN2 22
  66. #define BTN_ENC 24
  67. #define LCD_BACKLIGHT_PIN 6
  68. #if ENABLED(SILVER_GATE_GLCD_CONTROLLER)
  69. #define KILL_PIN 21
  70. #define HOME_PIN 28
  71. #endif
  72. #endif
  73. #endif
  74. #define SD_DETECT_PIN 15
  75. #define STAT_LED_RED_PIN 23
  76. #define STAT_LED_BLUE_PIN 26
  77. #define CASE_LIGHT_PIN 51