My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. /**
  2. * Teensylu 0.7 pin assignments (AT90USB1286)
  3. * Requires the Teensyduino software with Teensy++ 2.0 selected in Arduino IDE!
  4. * http://www.pjrc.com/teensy/teensyduino.html
  5. * See http://reprap.org/wiki/Printrboard for more info
  6. */
  7. #ifndef __AVR_AT90USB1286__
  8. #error Oops! Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu.
  9. #endif
  10. #if ENABLED(AT90USBxx_TEENSYPP_ASSIGNMENTS) // use Teensyduino Teensy++2.0 pin assignments instead of Marlin traditional.
  11. #error These Teensylu assignments depend on traditional Marlin assignments, not AT90USBxx_TEENSYPP_ASSIGNMENTS in fastio.h
  12. #endif
  13. #define LARGE_FLASH true
  14. #define X_STEP_PIN 0
  15. #define X_DIR_PIN 1
  16. #define X_ENABLE_PIN 39
  17. #define Y_STEP_PIN 2
  18. #define Y_DIR_PIN 3
  19. #define Y_ENABLE_PIN 38
  20. #define Z_STEP_PIN 4
  21. #define Z_DIR_PIN 5
  22. #define Z_ENABLE_PIN 23
  23. #define E0_STEP_PIN 6
  24. #define E0_DIR_PIN 7
  25. #define E0_ENABLE_PIN 19
  26. #define HEATER_0_PIN 21 // Extruder
  27. #define HEATER_1_PIN 46
  28. #define HEATER_2_PIN 47
  29. #define HEATER_BED_PIN 20
  30. // If soft or fast PWM is off then use Teensyduino pin numbering, Marlin
  31. // fastio pin numbering otherwise
  32. #if ENABLED(FAN_SOFT_PWM) || ENABLED(FAST_PWM_FAN)
  33. #define FAN_PIN 22
  34. #else
  35. #define FAN_PIN 16
  36. #endif
  37. #define X_STOP_PIN 13
  38. #define Y_STOP_PIN 14
  39. #define Z_STOP_PIN 15
  40. #define TEMP_0_PIN 7 // Extruder / Analog pin numbering
  41. #define TEMP_BED_PIN 6 // Bed / Analog pin numbering
  42. #define TEMP_1_PIN -1
  43. #define TEMP_2_PIN -1
  44. #define SDPOWER -1
  45. #define SDSS 8
  46. #define LED_PIN -1
  47. #define PS_ON_PIN -1
  48. #define KILL_PIN -1
  49. #define ALARM_PIN -1
  50. #if DISABLED(SDSUPPORT)
  51. // these pins are defined in the SD library if building with SD support
  52. #define SCK_PIN 9
  53. #define MISO_PIN 11
  54. #define MOSI_PIN 10
  55. #endif
  56. #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
  57. #define BEEPER_PIN -1
  58. #if ENABLED(LCD_I2C_PANELOLU2)
  59. #define BTN_EN1 27 //RX1 - fastio.h pin mapping 27
  60. #define BTN_EN2 26 //TX1 - fastio.h pin mapping 26
  61. #define BTN_ENC 43 //A3 - fastio.h pin mapping 43
  62. #define SDSS 40 //use SD card on Panelolu2 (Teensyduino pin mapping)
  63. #endif // LCD_I2C_PANELOLU2
  64. #define SD_DETECT_PIN -1
  65. #endif // ULTRA_LCD && NEWPANEL