My Marlin configs for Fabrikator Mini and CTC i3 Pro B
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

pins_SILVER_GATE.h 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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 <https://www.gnu.org/licenses/>.
  20. *
  21. */
  22. #pragma once
  23. #if NOT_TARGET(__AVR_ATmega1281__, __AVR_ATmega2561__)
  24. #error "Oops! Select 'Silvergate' in 'Tools > Board.'"
  25. #endif
  26. #define BOARD_INFO_NAME "Silver Gate"
  27. #define X_STEP_PIN 43
  28. #define X_DIR_PIN 44
  29. #define X_ENABLE_PIN 42
  30. #define X_MIN_PIN 31
  31. #define X_MAX_PIN 34
  32. #define Y_STEP_PIN 40
  33. #define Y_DIR_PIN 41
  34. #define Y_ENABLE_PIN 39
  35. #define Y_MIN_PIN 32
  36. #define Y_MAX_PIN 35
  37. #define Z_STEP_PIN 13
  38. #define Z_DIR_PIN 38
  39. #define Z_ENABLE_PIN 14
  40. #define Z_MIN_PIN 33
  41. #define Z_MAX_PIN 36
  42. #define E0_STEP_PIN 27
  43. #define E0_DIR_PIN 37
  44. #define E0_ENABLE_PIN 45
  45. #define SDSS 16
  46. #ifndef FIL_RUNOUT_PIN
  47. #define FIL_RUNOUT_PIN 34 // X_MAX unless overridden
  48. #endif
  49. #ifndef FAN_PIN
  50. #define FAN_PIN 5
  51. #endif
  52. #define HEATER_0_PIN 7
  53. #ifndef E0_AUTO_FAN_PIN
  54. #define E0_AUTO_FAN_PIN 3
  55. #endif
  56. #define CONTROLLER_FAN_PIN 2
  57. #define TEMP_0_PIN 7 // Analog Input
  58. #define HEATER_BED_PIN 8
  59. #define TEMP_BED_PIN 6
  60. #if HAS_WIRED_LCD
  61. #if IS_U8GLIB_ST7920 // SPI GLCD 12864 ST7920
  62. #define LCD_PINS_RS 30
  63. #define LCD_PINS_ENABLE 20
  64. #define LCD_PINS_D4 25
  65. #define BEEPER_PIN 29
  66. #define BTN_EN1 19
  67. #define BTN_EN2 22
  68. #define BTN_ENC 24
  69. #define LCD_BACKLIGHT_PIN 6
  70. #if ENABLED(SILVER_GATE_GLCD_CONTROLLER)
  71. #define KILL_PIN 21
  72. #define HOME_PIN 28
  73. #endif
  74. #define BOARD_ST7920_DELAY_1 0
  75. #define BOARD_ST7920_DELAY_2 250
  76. #define BOARD_ST7920_DELAY_3 0
  77. #endif
  78. #endif
  79. #define SD_DETECT_PIN 15
  80. #define STAT_LED_RED_PIN 23
  81. #define STAT_LED_BLUE_PIN 26
  82. #ifndef CASE_LIGHT_PIN
  83. #define CASE_LIGHT_PIN 51
  84. #endif