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_SAV_MKI.h 4.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * SAV MkI pin assignments (AT90USB1286)
  24. * Requires the Teensyduino software with Teensy++ 2.0 selected in Arduino IDE!
  25. * http://www.pjrc.com/teensy/teensyduino.html
  26. * RepRap Clone Wars project board.
  27. */
  28. #ifndef __AVR_AT90USB1286__
  29. #error "Oops! Make sure you have 'Teensy++ 2.0' selected from the 'Tools -> Boards' menu."
  30. #endif
  31. #define DEFAULT_MACHINE_NAME "SAV MkI"
  32. #define DEFAULT_SOURCE_CODE_URL "https://github.com/fmalpartida/Marlin/tree/SAV-MkI-config"
  33. #define BOARD_NAME "SAV MkI"
  34. #define LARGE_FLASH true
  35. #define X_STEP_PIN 0
  36. #define X_DIR_PIN 1
  37. #define X_ENABLE_PIN 39
  38. #define Y_STEP_PIN 2
  39. #define Y_DIR_PIN 3
  40. #define Y_ENABLE_PIN 38
  41. #define Z_STEP_PIN 4
  42. #define Z_DIR_PIN 5
  43. #define Z_ENABLE_PIN 23
  44. #define E0_STEP_PIN 6
  45. #define E0_DIR_PIN 7
  46. #define E0_ENABLE_PIN 19
  47. #define HEATER_0_PIN 21 // Extruder
  48. #define HEATER_BED_PIN 20 // Bed
  49. #define FAN_PIN 16 // Fan -- from Teensyduino environment.
  50. // For the fan and Teensyduino uses a different pin mapping.
  51. #define X_STOP_PIN 13
  52. #define Y_STOP_PIN 14
  53. //#define Z_STOP_PIN 15
  54. #define Z_STOP_PIN 36 // For inductive sensor.
  55. #define TEMP_0_PIN 7 // Extruder / Analog pin numbering
  56. #define TEMP_BED_PIN 6 // Bed / Analog pin numbering
  57. #if DISABLED(SDSUPPORT)
  58. // these pins are defined in the SD library if building with SD support
  59. #define SCK_PIN 9
  60. #define MISO_PIN 11
  61. #define MOSI_PIN 10
  62. #endif
  63. #define SDSS 20 // PB0 - 8 in marlin env.
  64. // Extension header pin mapping
  65. // ----------------------------
  66. // SCL (I2C)-D0 A0 (An), IO
  67. // SDA (I2C)-D1 A1 (An), IO
  68. // RX1-D2 A2 (An), IO
  69. // TX1-D3 A3 (An), IO
  70. // PWM-D24 A4 (An), IO
  71. // 5V GND
  72. // 12V GND
  73. #define EXT_AUX_SCL_D0 0 // 0 (teensy), 24 (marlin)
  74. #define EXT_AUX_SDA_D1 1 // 1 (teensy), 25 (marlin)
  75. #define EXT_AUX_RX1_D2 26 // 2 (teensy), 26 (marlin)
  76. #define EXT_AUX_TX1_D3 27 // 3 (teensy), 27 (marlin)
  77. #define EXT_AUX_PWM_D24 12 // 24 (teensy), 12 (marlin)
  78. #define EXT_AUX_A0 0 // Analog
  79. #define EXT_AUX_A0_IO 40 // Digital IO, 38 (teensy), 40 (marlin)
  80. #define EXT_AUX_A1 1 // Analog
  81. #define EXT_AUX_A1_IO 41 // Digital IO, 39 (teensy), 41 (marlin)
  82. #define EXT_AUX_A2 2 // Analog
  83. #define EXT_AUX_A2_IO 42 // Digital IO, 40 (teensy), 42 (marlin)
  84. #define EXT_AUX_A3 3 // Analog
  85. #define EXT_AUX_A3_IO 43 // Digital IO, 41 (teensy), 43 (marlin)
  86. #define EXT_AUX_A4 4 // Analog
  87. #define EXT_AUX_A4_IO 44 // Digital IO, 42 (teensy), 44 (marlin)
  88. #define BEEPER_PIN -1
  89. #define LCD_PINS_RS -1
  90. #define LCD_PINS_ENABLE -1
  91. #define LCD_PINS_D4 -1
  92. #define LCD_PINS_D5 -1
  93. #define LCD_PINS_D6 -1
  94. #define LCD_PINS_D7 -1
  95. #if ENABLED(SAV_3DLCD)
  96. // For LCD SHIFT register LCD
  97. #define SR_DATA_PIN EXT_AUX_SDA_D1
  98. #define SR_CLK_PIN EXT_AUX_SCL_D0
  99. #endif // SAV_3DLCD
  100. #if ENABLED(SAV_3DLCD) || ENABLED(SAV_3DGLCD)
  101. #define BTN_EN1 EXT_AUX_A1_IO
  102. #define BTN_EN2 EXT_AUX_A0_IO
  103. #define BTN_ENC EXT_AUX_PWM_D24
  104. #define KILL_PIN EXT_AUX_A2_IO
  105. #define HOME_PIN EXT_AUX_A4_IO
  106. #endif // SAV_3DLCD || SAV_3DGLCD
  107. #define SERVO0_PIN 41 // In teensy's pin definition for pinMode (in servo.cpp)