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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 USBCON 1286 // Disable MarlinSerial etc.
  35. #define LARGE_FLASH true
  36. //
  37. // Servos
  38. //
  39. #define SERVO0_PIN 41 // In teensy's pin definition for pinMode (in servo.cpp)
  40. //
  41. // Limit Switches
  42. //
  43. #define X_STOP_PIN 13
  44. #define Y_STOP_PIN 14
  45. //#define Z_STOP_PIN 15
  46. #define Z_STOP_PIN 36 // For inductive sensor.
  47. //
  48. // Steppers
  49. //
  50. #define X_STEP_PIN 0
  51. #define X_DIR_PIN 1
  52. #define X_ENABLE_PIN 39
  53. #define Y_STEP_PIN 2
  54. #define Y_DIR_PIN 3
  55. #define Y_ENABLE_PIN 38
  56. #define Z_STEP_PIN 4
  57. #define Z_DIR_PIN 5
  58. #define Z_ENABLE_PIN 23
  59. #define E0_STEP_PIN 6
  60. #define E0_DIR_PIN 7
  61. #define E0_ENABLE_PIN 19
  62. //
  63. // Temperature Sensors
  64. //
  65. #define TEMP_0_PIN 7 // Analog Input (Extruder)
  66. #define TEMP_BED_PIN 6 // Analog Input (Bed)
  67. //
  68. // Heaters / Fans
  69. //
  70. #define HEATER_0_PIN 21 // Extruder
  71. #define HEATER_BED_PIN 20 // Bed
  72. #define FAN_PIN 16 // Fan -- from Teensyduino environment.
  73. // For the fan and Teensyduino uses a different pin mapping.
  74. //
  75. // Misc. Functions
  76. //
  77. #define SDSS 20 // PB0 - 8 in marlin env.
  78. // Extension header pin mapping
  79. // ----------------------------
  80. // SCL (I2C)-D0 A0 (An), IO
  81. // SDA (I2C)-D1 A1 (An), IO
  82. // RX1-D2 A2 (An), IO
  83. // TX1-D3 A3 (An), IO
  84. // PWM-D24 A4 (An), IO
  85. // 5V GND
  86. // 12V GND
  87. #define EXT_AUX_SCL_D0 0 // 0 (teensy), 24 (marlin)
  88. #define EXT_AUX_SDA_D1 1 // 1 (teensy), 25 (marlin)
  89. #define EXT_AUX_RX1_D2 26 // 2 (teensy), 26 (marlin)
  90. #define EXT_AUX_TX1_D3 27 // 3 (teensy), 27 (marlin)
  91. #define EXT_AUX_PWM_D24 12 // 24 (teensy), 12 (marlin)
  92. #define EXT_AUX_A0 0 // Analog
  93. #define EXT_AUX_A0_IO 40 // Digital IO, 38 (teensy), 40 (marlin)
  94. #define EXT_AUX_A1 1 // Analog
  95. #define EXT_AUX_A1_IO 41 // Digital IO, 39 (teensy), 41 (marlin)
  96. #define EXT_AUX_A2 2 // Analog
  97. #define EXT_AUX_A2_IO 42 // Digital IO, 40 (teensy), 42 (marlin)
  98. #define EXT_AUX_A3 3 // Analog
  99. #define EXT_AUX_A3_IO 43 // Digital IO, 41 (teensy), 43 (marlin)
  100. #define EXT_AUX_A4 4 // Analog
  101. #define EXT_AUX_A4_IO 44 // Digital IO, 42 (teensy), 44 (marlin)
  102. //
  103. // LCD / Controller
  104. //
  105. #define BEEPER_PIN -1
  106. #define LCD_PINS_RS -1
  107. #define LCD_PINS_ENABLE -1
  108. #define LCD_PINS_D4 -1
  109. #define LCD_PINS_D5 -1
  110. #define LCD_PINS_D6 -1
  111. #define LCD_PINS_D7 -1
  112. #if ENABLED(SAV_3DLCD)
  113. // For LCD SHIFT register LCD
  114. #define SR_DATA_PIN EXT_AUX_SDA_D1
  115. #define SR_CLK_PIN EXT_AUX_SCL_D0
  116. #endif // SAV_3DLCD
  117. #if ENABLED(SAV_3DLCD) || ENABLED(SAV_3DGLCD)
  118. #define BTN_EN1 EXT_AUX_A1_IO
  119. #define BTN_EN2 EXT_AUX_A0_IO
  120. #define BTN_ENC EXT_AUX_PWM_D24
  121. #define KILL_PIN EXT_AUX_A2_IO
  122. #define HOME_PIN EXT_AUX_A4_IO
  123. #endif // SAV_3DLCD || SAV_3DGLCD