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_OMCA.h 5.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2020 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. * Open Motion controller with enable based extruders (Final!)
  25. *
  26. * ATmega644
  27. *
  28. * +---\/---+
  29. * (D 0) PB0 1| |40 PA0 (AI 0 / D31)
  30. * (D 1) PB1 2| |39 PA1 (AI 1 / D30)
  31. * INT2 (D 2) PB2 3| |38 PA2 (AI 2 / D29)
  32. * PWM (D 3) PB3 4| |37 PA3 (AI 3 / D28)
  33. * PWM (D 4) PB4 5| |36 PA4 (AI 4 / D27)
  34. * MOSI (D 5) PB5 6| |35 PA5 (AI 5 / D26)
  35. * MISO (D 6) PB6 7| |34 PA6 (AI 6 / D25)
  36. * SCK (D 7) PB7 8| |33 PA7 (AI 7 / D24)
  37. * RST 9| |32 AREF
  38. * VCC 10| |31 GND
  39. * GND 11| |30 AVCC
  40. * XTAL2 12| |29 PC7 (D 23)
  41. * XTAL1 13| |28 PC6 (D 22)
  42. * RX0 (D 8) PD0 14| |27 PC5 (D 21) TDI
  43. * TX0 (D 9) PD1 15| |26 PC4 (D 20) TDO
  44. * INT0 RX1 (D 10) PD2 16| |25 PC3 (D 19) TMS
  45. * INT1 TX1 (D 11) PD3 17| |24 PC2 (D 18) TCK
  46. * PWM (D 12) PD4 18| |23 PC1 (D 17) SDA
  47. * PWM (D 13) PD5 19| |22 PC0 (D 16) SCL
  48. * PWM (D 14) PD6 20| |21 PD7 (D 15) PWM
  49. * +--------+
  50. *
  51. * REF http://sanguino.wikidot.com/hardware
  52. */
  53. /**
  54. * Rev B 26 DEC 2016
  55. *
  56. * added pointer to a current Arduino IDE extension
  57. *
  58. */
  59. /**
  60. * A useable Arduino IDE extension (board manager) can be found at
  61. * https://github.com/Lauszus/Sanguino
  62. *
  63. * This extension has been tested on Arduino 1.6.12 & 1.8.0
  64. *
  65. * Here's the JSON path:
  66. * https://raw.githubusercontent.com/Lauszus/Sanguino/master/package_lauszus_sanguino_index.json
  67. *
  68. * When installing select 1.0.2
  69. *
  70. * Installation instructions can be found at http://learn.sparkfun.com/pages/CustomBoardsArduino
  71. * Just use the above JSON URL instead of Sparkfun's JSON.
  72. *
  73. * Once installed select the Sanguino board and then select the CPU.
  74. *
  75. */
  76. #if !defined(__AVR_ATmega644P__) && !defined(__AVR_ATmega644__)
  77. #error "Oops! Select 'Sanguino' in 'Tools > Board' and 'ATmega644' or 'ATmega644P' in 'Tools > Processor.'"
  78. #endif
  79. #define BOARD_INFO_NAME "Final OMCA"
  80. //
  81. // Limit Switches
  82. //
  83. #define X_STOP_PIN 0
  84. #define Y_STOP_PIN 1
  85. #define Z_STOP_PIN 2
  86. //
  87. // Steppers
  88. //
  89. #define X_STEP_PIN 26
  90. #define X_DIR_PIN 25
  91. #define X_ENABLE_PIN 10
  92. #define Y_STEP_PIN 28
  93. #define Y_DIR_PIN 27
  94. #define Y_ENABLE_PIN 10
  95. #define Z_STEP_PIN 23
  96. #define Z_DIR_PIN 22
  97. #define Z_ENABLE_PIN 10
  98. #define E0_STEP_PIN 24
  99. #define E0_DIR_PIN 21
  100. #define E0_ENABLE_PIN 10
  101. #define E1_STEP_PIN -1 // 21
  102. #define E1_DIR_PIN -1 // 20
  103. #define E1_ENABLE_PIN -1 // 19
  104. #define E2_STEP_PIN -1 // 21
  105. #define E2_DIR_PIN -1 // 20
  106. #define E2_ENABLE_PIN -1 // 18
  107. //
  108. // Temperature Sensors
  109. //
  110. #define TEMP_0_PIN 0 // Analog Input
  111. #define TEMP_1_PIN 1 // Analog Input
  112. #define TEMP_BED_PIN 2 // Analog Input (1,2 or I2C)
  113. //
  114. // Heaters / Fans
  115. //
  116. #define HEATER_0_PIN 3 // DONE PWM on RIGHT connector
  117. #define HEATER_BED_PIN 4
  118. #ifndef FAN_PIN
  119. #define FAN_PIN 14 // PWM on MIDDLE connector
  120. #endif
  121. //
  122. // Misc. Functions
  123. //
  124. #define SDSS 11
  125. #define I2C_SCL_PIN 16
  126. #define I2C_SDA_PIN 17
  127. // future proofing
  128. #define __FS 20
  129. #define __FD 19
  130. #define __GS 18
  131. #define __GD 13
  132. #define UNUSED_PWM 14 // PWM on LEFT connector