My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pins_TEENSYLU.h 5.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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 <https://www.gnu.org/licenses/>.
  20. */
  21. #pragma once
  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 - https://www.pjrc.com/teensy/teensyduino.html
  32. * Select Teensy++ 2.0 in Arduino IDE from the 'Tools > Board' 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 > Board' 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. #define ALLOW_AT90USB1286P
  72. #include "env_validate.h"
  73. #if NOT_TARGET(__AVR_AT90USB1286__, __AVR_AT90USB1286P__)
  74. #error "Oops! Select 'Teensy++ 2.0' or 'Printrboard' in 'Tools > Board.'"
  75. #endif
  76. #define BOARD_INFO_NAME "Teensylu"
  77. //
  78. // Limit Switch definitions that match the SCHEMATIC
  79. //
  80. //#define X_STOP_PIN 25 // B5
  81. //#define Y_STOP_PIN 26 // B6
  82. //#define Z_STOP_PIN 27 // B7
  83. //#define E_STOP_PIN 36 // E4
  84. //
  85. // Limit Switch definitions that match the SILKSCREEN
  86. //
  87. #define X_STOP_PIN 26 // B6
  88. #define Y_STOP_PIN 27 // B7
  89. #define Z_STOP_PIN 36 // E4
  90. //#define E_STOP_PIN 25 // B5
  91. //
  92. // Steppers
  93. //
  94. #define X_STEP_PIN 28 // A0
  95. #define X_DIR_PIN 29 // A1
  96. #define X_ENABLE_PIN 19 // E7
  97. #define Y_STEP_PIN 30 // A2
  98. #define Y_DIR_PIN 31 // A3
  99. #define Y_ENABLE_PIN 18 // E6
  100. #define Z_STEP_PIN 32 // A4
  101. #define Z_DIR_PIN 33 // A5
  102. #define Z_ENABLE_PIN 17 // C7
  103. #define E0_STEP_PIN 34 // A6
  104. #define E0_DIR_PIN 35 // A7
  105. #define E0_ENABLE_PIN 13 // C3
  106. //
  107. // Temperature Sensors
  108. //
  109. #define TEMP_0_PIN 7 // Analog Input (Extruder)
  110. #define TEMP_BED_PIN 6 // Analog Input (Bed)
  111. //
  112. // Heaters / Fans
  113. //
  114. #define HEATER_0_PIN 15 // C5 PWM3B - Extruder
  115. #define HEATER_BED_PIN 14 // C4 PWM3C
  116. #ifndef FAN_PIN
  117. #define FAN_PIN 16 // C6 PWM3A
  118. #endif
  119. //
  120. // Misc. Functions
  121. //
  122. #define SDSS 20 // B0 JP31-6
  123. #ifndef CASE_LIGHT_PIN
  124. #define CASE_LIGHT_PIN 0 // D0 IO-14 PWM0B
  125. #endif
  126. //
  127. // LCD / Controller
  128. //
  129. #if IS_ULTRA_LCD && IS_NEWPANEL
  130. #define BEEPER_PIN -1
  131. #if ENABLED(LCD_I2C_PANELOLU2)
  132. #define BTN_EN1 3 // D3 IO-8
  133. #define BTN_EN2 2 // D2 IO-10
  134. #define BTN_ENC 41 // F3 IO-7
  135. #define SDSS 38 // F0 IO-13 use SD card on Panelolu2
  136. #endif
  137. #define SD_DETECT_PIN -1
  138. #endif // IS_ULTRA_LCD && IS_NEWPANEL
  139. //
  140. // M3/M4/M5 - Spindle/Laser Control
  141. //
  142. #define SPINDLE_LASER_PWM_PIN 24 // B4 IO-3 PWM2A - MUST BE HARDWARE PWM
  143. #define SPINDLE_LASER_ENA_PIN 39 // F1 IO-11 - Pin should have a pullup!
  144. #define SPINDLE_DIR_PIN 40 // F2 IO-9