12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #if !defined(__AVR_ATmega1281__) && !defined(__AVR_ATmega2561__)
- #error Oops! Make sure you have 'Silvergate' selected from the 'Tools -> Boards' menu.
- #endif
- #ifndef BOARD_NAME
- #define BOARD_NAME "Silver Gate"
- #endif
- #define X_STEP_PIN 43
- #define X_DIR_PIN 44
- #define X_ENABLE_PIN 42
- #define X_MIN_PIN 31
- #define X_MAX_PIN 34
- #define Y_STEP_PIN 40
- #define Y_DIR_PIN 41
- #define Y_ENABLE_PIN 39
- #define Y_MIN_PIN 32
- #define Y_MAX_PIN 35
- #define Z_STEP_PIN 13
- #define Z_DIR_PIN 38
- #define Z_ENABLE_PIN 14
- #define Z_MIN_PIN 33
- #define Z_MAX_PIN 36
- #define E0_STEP_PIN 27
- #define E0_DIR_PIN 37
- #define E0_ENABLE_PIN 45
- #define SDSS 16
- #ifndef FIL_RUNOUT_PIN
- #define FIL_RUNOUT_PIN 34
- #endif
- #ifndef FAN_PIN
- #define FAN_PIN 5
- #endif
- #define HEATER_0_PIN 7
- #define ORIG_E0_AUTO_FAN_PIN 3
- #define CONTROLLER_FAN_PIN 2
- #define TEMP_0_PIN 7
- #define HEATER_BED_PIN 8
- #define TEMP_BED_PIN 6
- #if ENABLED(DOGLCD)
- #if ENABLED(U8GLIB_ST7920)
- #define LCD_PINS_RS 30
- #define LCD_PINS_ENABLE 20
- #define LCD_PINS_D4 25
- #define BEEPER_PIN 29
- #define BTN_EN1 19
- #define BTN_EN2 22
- #define BTN_ENC 24
- #define LCD_BACKLIGHT_PIN 6
- #if ENABLED(SILVER_GATE_GLCD_CONTROLLER)
- #define KILL_PIN 21
- #define HOME_PIN 28
- #endif
- #endif
- #endif
- #define SD_DETECT_PIN 15
- #define STAT_LED_RED_PIN 23
- #define STAT_LED_BLUE_PIN 26
- #define CASE_LIGHT_PIN 51
|