My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pins_GEN7_14.h 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. /**
  2. * Gen7 v1.4 pin assignments
  3. */
  4. #define GEN7_VERSION 14 // v1.4
  5. #if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega644__) && !defined(__AVR_ATmega1284P__)
  6. #error Oops! Make sure you have 'Gen7' selected from the 'Tools -> Boards' menu.
  7. #endif
  8. //x axis pins
  9. #define X_STEP_PIN 29
  10. #define X_DIR_PIN 28
  11. #define X_ENABLE_PIN 25
  12. #define X_STOP_PIN 0
  13. //y axis pins
  14. #define Y_STEP_PIN 27
  15. #define Y_DIR_PIN 26
  16. #define Y_ENABLE_PIN 25
  17. #define Y_STOP_PIN 1
  18. //z axis pins
  19. #define Z_STEP_PIN 23
  20. #define Z_DIR_PIN 22
  21. #define Z_ENABLE_PIN 25
  22. #define Z_STOP_PIN 2
  23. //extruder pins
  24. #define E0_STEP_PIN 19
  25. #define E0_DIR_PIN 18
  26. #define E0_ENABLE_PIN 25
  27. #define TEMP_0_PIN 1
  28. #define TEMP_1_PIN -1
  29. #define TEMP_2_PIN -1
  30. #define TEMP_BED_PIN 0
  31. #define HEATER_0_PIN 4
  32. #define HEATER_1_PIN -1
  33. #define HEATER_2_PIN -1
  34. #define HEATER_BED_PIN 3
  35. #define KILL_PIN -1
  36. #define SDPOWER -1
  37. #define SDSS -1 // SCL pin of I2C header
  38. #define LED_PIN -1
  39. #define FAN_PIN -1
  40. #define PS_ON_PIN 15
  41. //our pin for debugging.
  42. #define DEBUG_PIN 0
  43. //our RS485 pins
  44. #define TX_ENABLE_PIN 12
  45. #define RX_ENABLE_PIN 13