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_ARCHIM1.h 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2019 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. #pragma once
  23. /**
  24. * ARCHIM1 pin assignment
  25. *
  26. * The Archim 1.0 board requires Arduino Archim addons installed.
  27. *
  28. * - Add the following URL to Arduino IDE's Additional Board Manager URLs:
  29. * https://raw.githubusercontent.com/ultimachine/ArduinoAddons/master/package_ultimachine_index.json
  30. *
  31. * - In the Arduino IDE Board Manager search for Archim and install the package.
  32. *
  33. * - Change your target board to "Archim".
  34. *
  35. * Further information on the UltiMachine website...
  36. * https://github.com/ultimachine/Archim/wiki
  37. */
  38. #ifndef __SAM3X8E__
  39. #error "Oops! Select 'Archim' in 'Tools > Board.'"
  40. #endif
  41. #define BOARD_INFO_NAME "Archim 1.0"
  42. //
  43. // Items marked * have been altered from Archim v1.0
  44. //
  45. //
  46. // Servos
  47. //
  48. #define SERVO0_PIN 20 // D20 PB12 (Header J20 20)
  49. #define SERVO1_PIN 21 // D21 PB13 (Header J20 19)
  50. //
  51. // Limit Switches
  52. //
  53. #define X_MIN_PIN 14 // PD4 MIN ES1
  54. #define X_MAX_PIN 32 // PD10 MAX ES1
  55. #define Y_MIN_PIN 29 // PD6 MIN ES2
  56. #define Y_MAX_PIN 15 // PD5 MAX ES2
  57. #define Z_MIN_PIN 31 // PA7 MIN ES3
  58. #define Z_MAX_PIN 30 // PD9 MAX ES3
  59. //
  60. // Z Probe (when not Z_MIN_PIN)
  61. //
  62. #ifndef Z_MIN_PROBE_PIN
  63. #define Z_MIN_PROBE_PIN 32
  64. #endif
  65. #ifndef FIL_RUNOUT_PIN
  66. #define FIL_RUNOUT_PIN 66 // D66 PB15 (Header J20 15)
  67. #endif
  68. #ifndef FIL_RUNOUT2_PIN
  69. #define FIL_RUNOUT2_PIN 67 // D67 PB16 (Header J20 16)
  70. #endif
  71. //
  72. // Steppers
  73. //
  74. #define X_STEP_PIN 40 // PC8 STEP1 *
  75. #define X_DIR_PIN 59 // PA4 DIR1 *
  76. #define X_ENABLE_PIN 41 // PC9 EN1
  77. #define Y_STEP_PIN 49 // PC14 STEP2 *
  78. #define Y_DIR_PIN 47 // PC16 DIR2 *
  79. #define Y_ENABLE_PIN 48 // PC15 EN2 *
  80. #define Z_STEP_PIN 36 // PC4 STEP Z *
  81. #define Z_DIR_PIN 107 // PB10 DIR Z *
  82. #define Z_ENABLE_PIN 96 // PC10 EN Z -AddOns *
  83. #define E0_STEP_PIN 78 // PB23 STEP3 *
  84. #define E0_DIR_PIN 22 // PB26 DIR3 *
  85. #define E0_ENABLE_PIN 97 // PB24 EN3 -Addons *
  86. #define E1_STEP_PIN 26 // PD1 STEP4 *
  87. #define E1_DIR_PIN 27 // PD2 DIR4 *
  88. #define E1_ENABLE_PIN 28 // PD3 EN4 *
  89. // Microstepping mode pins *
  90. #define X_MS1_PIN 39 // PC7 MOD0E1 - As listed in schematic
  91. #define X_MS2_PIN 38 // PC6 MOD1E1
  92. #define X_MS3_PIN 37 // PC5 MOD2E1
  93. #define Y_MS1_PIN 50 // PC13 MODE0E2
  94. #define Y_MS2_PIN 51 // PC12 MODE1E2
  95. #define Y_MS3_PIN 92 // PC11 MODE2E2 - AddOns
  96. #define Z_MS1_PIN 44 // PC19 MOD0E Z
  97. #define Z_MS2_PIN 45 // PC18 MOD1E Z
  98. #define Z_MS3_PIN 46 // PC17 MOD2E Z
  99. #define E0_MS1_PIN 105 // PB22 MOD0E3 - AddOns
  100. #define E0_MS2_PIN 106 // PC27 MOD1E3 - AddOns
  101. #define E0_MS3_PIN 104 // PC20 MOD2E3 - AddOns
  102. #define E1_MS1_PIN 25 // PD0 MOD0E4
  103. #define E1_MS2_PIN 18 // PA11 MOD1E4
  104. #define E1_MS3_PIN 19 // PA10 MOD2E4
  105. // Motor current PWM pins *
  106. #define MOTOR_CURRENT_PWM_X_PIN 58 // PA6 X-REF TIOB2
  107. #define MOTOR_CURRENT_PWM_Y_PIN 12 // PD8 Y-REF TIOB8
  108. #define MOTOR_CURRENT_PWM_Z_PIN 10 // PC29 Z-REF TIOB7
  109. #define MOTOR_CURRENT_PWM_E0_PIN 3 // PC28 E1-REF TIOA7
  110. #define MOTOR_CURRENT_PWM_E1_PIN 11 // PD7 E2-REF TIOA8
  111. #define MOTOR_CURRENT_PWM_RANGE 2750 // (3.3 Volts * 100000 Ohms) / (100000 Ohms + 20000 Ohms) = 2.75 Volts (max vref)
  112. #define DEFAULT_PWM_MOTOR_CURRENT { 1000, 1000, 1000 } //, 1000, 1000} // X Y Z E0 E1, 1000 = 1000mAh
  113. //
  114. // Temperature Sensors
  115. //
  116. #define TEMP_0_PIN 10 // D10 PB19 THERM AN1 *
  117. #define TEMP_1_PIN 9 // D9 PB18 THERM AN2 *
  118. #define TEMP_2_PIN 8 // D8 PB17 THERM AN4 *
  119. #define TEMP_BED_PIN 11 // D11 PB20 THERM AN3 *
  120. //
  121. // Heaters / Fans
  122. //
  123. #define HEATER_0_PIN 6 // D6 PC24 FET_PWM3
  124. #define HEATER_1_PIN 7 // D7 PC23 FET_PWM4
  125. #define HEATER_2_PIN 8 // D8 PC22 FET_PWM5
  126. #define HEATER_BED_PIN 9 // D9 PC21 BED_PWM
  127. #ifndef FAN_PIN
  128. #define FAN_PIN 4 // D4 PC26 FET_PWM1
  129. #endif
  130. #define FAN1_PIN 5 // D5 PC25 FET_PWM2
  131. //
  132. // Misc. Functions
  133. //
  134. // Internal MicroSD card reader on the PCB
  135. #define INT_SCK_PIN 42 // D42 PA19/MCCK
  136. #define INT_MISO_PIN 43 // D43 PA20/MCCDA
  137. #define INT_MOSI_PIN 73 // D73 PA21/MCDA0
  138. #define INT_SDSS 55 // D55 PA24/MCDA3
  139. // External SD card reader on SC2
  140. #define SCK_PIN 76 // D76 PA27
  141. #define MISO_PIN 74 // D74 PA25
  142. #define MOSI_PIN 75 // D75 PA26
  143. #define SDSS 87 // D87 PA29
  144. // 2MB SPI Flash
  145. #define SPI_FLASH_SS 52 // D52 PB21
  146. //
  147. // LCD / Controller
  148. //
  149. #if HAS_SPI_LCD
  150. #define BEEPER_PIN 23 // D24 PA15_CTS1
  151. #define LCD_PINS_RS 17 // D17 PA12_RXD1
  152. #define LCD_PINS_ENABLE 24 // D23 PA14_RTS1
  153. #define LCD_PINS_D4 69 // D69 PA0_CANTX0
  154. #define LCD_PINS_D5 54 // D54 PA16_SCK1
  155. #define LCD_PINS_D6 68 // D68 PA1_CANRX0
  156. #define LCD_PINS_D7 34 // D34 PC2_PWML0
  157. #define SD_DETECT_PIN 2 // D2 PB25_TIOA0
  158. #if ENABLED(NEWPANEL)
  159. // Buttons on AUX-2
  160. #define BTN_EN1 60 // D60 PA3_TIOB1
  161. #define BTN_EN2 13 // D13 PB27_TIOB0
  162. #define BTN_ENC 16 // D16 PA13_TXD1
  163. #endif // NEWPANEL
  164. #endif // HAS_SPI_LCD