My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

pins_TEENSYLU.h 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  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. * Rev C 2 JUN 2017
  24. *
  25. * Converted to Arduino pin numbering
  26. */
  27. /**
  28. * There are two Arduino IDE extensions that are compatible with this board
  29. * and with the mainstream Marlin software. All have been used with Arduino 1.6.12
  30. *
  31. * Teensyduino - http://www.pjrc.com/teensy/teensyduino.html
  32. * Select Teensy++ 2.0 in Arduino IDE from the 'Tools -> Boards' menu
  33. *
  34. * Installation instructions are at the above URL. Don't bother loading the
  35. * libraries - they are not used with the Marlin software.
  36. *
  37. * Printrboard - https://github.com/scwimbush/Printrboard-HID-Arduino-IDE-Support
  38. * This is basically Teensyduino but with a bootloader that can handle image sizes
  39. * larger than 64K.
  40. *
  41. * Installation:
  42. *
  43. * 1. Go to the above URL, click on the "Clone or Download" button and then
  44. * click on "Download ZIP" button.
  45. * 2. Unzip the file, find the "printrboard" directory and then copy it to the
  46. * hardware directory in Arduino. The Arduino hardware directory will probably
  47. * be located in a path similar to this: C:\Program Files (x86)\Arduino\hardware.
  48. * 3. Restart Arduino.
  49. * 4. Select "Printrboard" from the 'Tools -> Boards' menu.
  50. *
  51. * Teensyduino is the most popular option. Printrboard is used if your board doesn't have
  52. * the Teensyduino bootloader on it.
  53. */
  54. /**
  55. * To burn the bootloader that comes with Printrboard:
  56. *
  57. * 1. Connect your programmer to the board.
  58. * 2. In the Arduino IDE select "Printrboard" and then select the programmer.
  59. * 3. In the Arduino IDE click on "burn bootloader". Don't worry about the "verify failed at 1F000" error message.
  60. * 4. The programmer is no longer needed. Remove it.
  61. */
  62. /**
  63. * SILKSCREEN ERROR
  64. *
  65. * The silkscreen for the endstops do NOT match the schematic. The silkscreen SHOULD
  66. * read (from left to right) X-STOP, Y-STOP, Z-STOP & E-STOP. The silkscreen actually
  67. * reads E-STOP, X-STOP, Y-STOP & Z-STOP.
  68. *
  69. * The pin assignments in this file match the silkscreen.
  70. */
  71. #if !defined(__AVR_AT90USB1286__) && !defined(__AVR_AT90USB1286P__)
  72. #error "Oops! Make sure you have 'Teensy++ 2.0' or 'Printrboard' selected from the 'Tools -> Boards' menu."
  73. #endif
  74. #define BOARD_NAME "Teensylu"
  75. //
  76. // Limit Switch definitions that match the SCHEMATIC
  77. //
  78. //#define X_STOP_PIN 25 // B5
  79. //#define Y_STOP_PIN 26 // B6
  80. //#define Z_STOP_PIN 27 // B7
  81. //#define E_STOP_PIN 36 // E4
  82. //
  83. // Limit Switch definitions that match the SILKSCREEN
  84. //
  85. #define X_STOP_PIN 26 // B6
  86. #define Y_STOP_PIN 27 // B7
  87. #define Z_STOP_PIN 36 // E4
  88. //#define E_STOP_PIN 25 // B5
  89. //
  90. // Steppers
  91. //
  92. #define X_STEP_PIN 28 // A0
  93. #define X_DIR_PIN 29 // A1
  94. #define X_ENABLE_PIN 19 // E7
  95. #define Y_STEP_PIN 30 // A2
  96. #define Y_DIR_PIN 31 // A3
  97. #define Y_ENABLE_PIN 18 // E6
  98. #define Z_STEP_PIN 32 // A4
  99. #define Z_DIR_PIN 33 // A5
  100. #define Z_ENABLE_PIN 17 // C7
  101. #define E0_STEP_PIN 34 // A6
  102. #define E0_DIR_PIN 35 // A7
  103. #define E0_ENABLE_PIN 13 // C3
  104. //
  105. // Temperature Sensors
  106. //
  107. #define TEMP_0_PIN 7 // Analog Input (Extruder)
  108. #define TEMP_BED_PIN 6 // Analog Input (Bed)
  109. //
  110. // Heaters / Fans
  111. //
  112. #define HEATER_0_PIN 15 // C5 PWM3B - Extruder
  113. #define HEATER_BED_PIN 14 // C4 PWM3C
  114. #define FAN_PIN 16 // C6 PWM3A
  115. //
  116. // Misc. Functions
  117. //
  118. #define SDSS 20 // B0 JP31-6
  119. #define CASE_LIGHT_PIN 0 // D0 IO-14 PWM0B
  120. //
  121. // LCD / Controller
  122. //
  123. #if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
  124. #define BEEPER_PIN -1
  125. #if ENABLED(LCD_I2C_PANELOLU2)
  126. #define BTN_EN1 3 // D3 IO-8
  127. #define BTN_EN2 2 // D2 IO-10
  128. #define BTN_ENC 41 // F3 IO-7
  129. #define SDSS 38 // F0 IO-13 use SD card on Panelolu2
  130. #endif
  131. #define SD_DETECT_PIN -1
  132. #endif // ULTRA_LCD && NEWPANEL
  133. //
  134. // M3/M4/M5 - Spindle/Laser Control
  135. //
  136. #define SPINDLE_LASER_PWM_PIN 24 // B4 IO-3 PWM2A - MUST BE HARDWARE PWM
  137. #define SPINDLE_LASER_ENABLE_PIN 39 // F1 IO-11 - Pin should have a pullup!
  138. #define SPINDLE_DIR_PIN 40 // F2 IO-9