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_GEN7_12.h 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /**
  2. * Gen7 v1.1, v1.2, v1.3 pin assignments
  3. */
  4. #if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega644__) && !defined(__AVR_ATmega1284P__)
  5. #error Oops! Make sure you have 'Gen7' selected from the 'Tools -> Boards' menu.
  6. #endif
  7. #ifndef GEN7_VERSION
  8. #define GEN7_VERSION 12 // v1.x
  9. #endif
  10. //x axis pins
  11. #define X_STEP_PIN 19
  12. #define X_DIR_PIN 18
  13. #define X_ENABLE_PIN 24
  14. #define X_STOP_PIN 7
  15. //y axis pins
  16. #define Y_STEP_PIN 23
  17. #define Y_DIR_PIN 22
  18. #define Y_ENABLE_PIN 24
  19. #define Y_STOP_PIN 5
  20. //z axis pins
  21. #define Z_STEP_PIN 26
  22. #define Z_DIR_PIN 25
  23. #define Z_ENABLE_PIN 24
  24. #define Z_MIN_PIN 1
  25. #define Z_MAX_PIN 0
  26. //extruder pins
  27. #define E0_STEP_PIN 28
  28. #define E0_DIR_PIN 27
  29. #define E0_ENABLE_PIN 24
  30. #define TEMP_0_PIN 1
  31. #define TEMP_1_PIN -1
  32. #define TEMP_2_PIN -1
  33. #define TEMP_BED_PIN 2
  34. #define HEATER_0_PIN 4
  35. #define HEATER_1_PIN -1
  36. #define HEATER_2_PIN -1
  37. #define HEATER_BED_PIN 3
  38. #define KILL_PIN -1
  39. #define SDPOWER -1
  40. #define SDSS -1 // SCL pin of I2C header
  41. #define LED_PIN -1
  42. #if (GEN7_VERSION >= 13)
  43. // Gen7 v1.3 removed the fan pin
  44. #define FAN_PIN -1
  45. #else
  46. #define FAN_PIN 31
  47. #endif
  48. #define PS_ON_PIN 15
  49. //All these generations of Gen7 supply thermistor power
  50. //via PS_ON, so ignore bad thermistor readings
  51. #define BOGUS_TEMPERATURE_FAILSAFE_OVERRIDE
  52. //our pin for debugging.
  53. #define DEBUG_PIN 0
  54. //our RS485 pins
  55. #define TX_ENABLE_PIN 12
  56. #define RX_ENABLE_PIN 13