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_TRIGORILLA_PRO.h 6.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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. */
  22. #pragma once
  23. /**
  24. * ANYCUBIC Trigorilla Pro (STM32F130ZET6) board pin assignments.
  25. * It is the same used by the Tronxy X5SA thanks to ftoz1 for sharing it
  26. * https://github.com/MarlinFirmware/Marlin/issues/14655
  27. * https://github.com/MarlinFirmware/Marlin/files/3401484/x5sa-main_board-2.pdf
  28. */
  29. #if NOT_TARGET(__STM32F1__)
  30. #error "Oops! Select an STM32F1 board in 'Tools > Board.'"
  31. #elif HOTENDS > 2 || E_STEPPERS > 2
  32. #error "Trigorilla Pro supports up to 2 hotends / E-steppers. Comment out this line to continue."
  33. #endif
  34. #define BOARD_INFO_NAME "Trigorilla Pro"
  35. #define DISABLE_JTAG
  36. //
  37. // EEPROM
  38. //
  39. #define FLASH_EEPROM_EMULATION
  40. #if ENABLED(FLASH_EEPROM_EMULATION)
  41. // SoC Flash (framework-arduinoststm32-maple/STM32F1/libraries/EEPROM/EEPROM.h)
  42. #define EEPROM_START_ADDRESS (0x8000000UL + (512 * 1024) - 2 * EEPROM_PAGE_SIZE)
  43. #define EEPROM_PAGE_SIZE (0x800U) // 2KB, but will use 2x more (4KB)
  44. #define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE
  45. #else
  46. #define MARLIN_EEPROM_SIZE (0x800U) // On SD, Limit to 2KB, require this amount of RAM
  47. #endif
  48. //
  49. // Limit Switches
  50. //
  51. #define X_MAX_PIN PG10
  52. #define Y_MAX_PIN PA12
  53. #define Z_MAX_PIN PA14
  54. #define Z_MIN_PIN PA13
  55. //
  56. // Steppers
  57. //
  58. #define X_ENABLE_PIN PC13
  59. #define X_STEP_PIN PE5
  60. #define X_DIR_PIN PE6
  61. #define Y_ENABLE_PIN PE4
  62. #define Y_STEP_PIN PE2
  63. #define Y_DIR_PIN PE3
  64. #define Z_ENABLE_PIN PE1
  65. #define Z_STEP_PIN PB9
  66. #define Z_DIR_PIN PE0
  67. #define E0_ENABLE_PIN PB8
  68. #define E0_STEP_PIN PB4
  69. #define E0_DIR_PIN PB5
  70. #define E1_ENABLE_PIN PG8
  71. #define E1_STEP_PIN PC7
  72. #define E1_DIR_PIN PC6
  73. //
  74. // Temperature Sensors
  75. //
  76. #define TEMP_0_PIN PA1 // TH1
  77. #define TEMP_BED_PIN PA0 // TB1
  78. //
  79. // Heaters
  80. //
  81. #define HEATER_0_PIN PG12 // HEATER1
  82. #define HEATER_BED_PIN PG11 // HOT BED
  83. #define HEATER_BED_INVERTING true
  84. //
  85. // Fans
  86. //
  87. #define CONTROLLER_FAN_PIN PD6 // FAN
  88. #define FAN_PIN PG13 // FAN
  89. #define FAN1_PIN PG14 // FAN
  90. //
  91. // Misc
  92. //
  93. #define BEEPER_PIN PB0
  94. #define LED_PIN PD3
  95. //#define POWER_LOSS_PIN PG2 // PG4 PW_DET
  96. #define FIL_RUNOUT_PIN PA15 // MT_DET
  97. /**
  98. * Note: MKS Robin TFT screens use various TFT controllers
  99. * Supported screens are based on the ILI9341, ST7789V and ILI9328 (320x240)
  100. * ILI9488 is not supported.
  101. * Define init sequences for other screens in u8g_dev_tft_320x240_upscale_from_128x64.cpp
  102. *
  103. * If the screen stays white, disable 'LCD_RESET_PIN' to let the bootloader init the screen.
  104. *
  105. * Setting an 'LCD_RESET_PIN' may cause a flicker when entering the LCD menu
  106. * because Marlin uses the reset as a failsafe to revive a glitchy LCD.
  107. */
  108. #if HAS_FSMC_TFT
  109. #define TFT_RESET_PIN PF11
  110. #define TFT_BACKLIGHT_PIN PD13
  111. #define FSMC_CS_PIN PD7 // NE4
  112. #define FSMC_RS_PIN PD11 // A0
  113. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  114. #define FSMC_DMA_DEV DMA2
  115. #define FSMC_DMA_CHANNEL DMA_CH5
  116. #define ANYCUBIC_TFT35
  117. #else
  118. #define LCD_RESET_PIN PF11
  119. #define LCD_BACKLIGHT_PIN PD13
  120. #endif
  121. // XPT2046 Touch Screen calibration
  122. #if ENABLED(TFT_COLOR_UI) || ENABLED(TFT_LVGL_UI)
  123. #ifndef XPT2046_X_CALIBRATION
  124. #define XPT2046_X_CALIBRATION -17181
  125. #endif
  126. #ifndef XPT2046_Y_CALIBRATION
  127. #define XPT2046_Y_CALIBRATION 11434
  128. #endif
  129. #ifndef XPT2046_X_OFFSET
  130. #define XPT2046_X_OFFSET 501
  131. #endif
  132. #ifndef XPT2046_Y_OFFSET
  133. #define XPT2046_Y_OFFSET -9
  134. #endif
  135. #elif ENABLED(TFT_CLASSIC_UI)
  136. #ifndef XPT2046_X_CALIBRATION
  137. #define XPT2046_X_CALIBRATION -12316
  138. #endif
  139. #ifndef XPT2046_Y_CALIBRATION
  140. #define XPT2046_Y_CALIBRATION 8981
  141. #endif
  142. #ifndef XPT2046_X_OFFSET
  143. #define XPT2046_X_OFFSET 340
  144. #endif
  145. #ifndef XPT2046_Y_OFFSET
  146. #define XPT2046_Y_OFFSET -20
  147. #endif
  148. #endif
  149. #if NEED_TOUCH_PINS
  150. #define TOUCH_CS_PIN PB7 // SPI2_NSS
  151. #define TOUCH_SCK_PIN PA5 // SPI2_SCK
  152. #define TOUCH_MISO_PIN PA6 // SPI2_MISO
  153. #define TOUCH_MOSI_PIN PA7 // SPI2_MOSI
  154. #endif
  155. // SPI1(PA7) & SPI3(PB5) not available
  156. #define ENABLE_SPI2
  157. #if ENABLED(SDIO_SUPPORT)
  158. #define SCK_PIN PB13 // SPI2 ok
  159. #define MISO_PIN PB14 // SPI2 ok
  160. #define MOSI_PIN PB15 // SPI2 ok
  161. #define SS_PIN PC11 // PB12 is X- ok
  162. #define SD_DETECT_PIN -1 // SD_CD ok
  163. #else
  164. // SD as custom software SPI (SDIO pins)
  165. #define SCK_PIN PC12
  166. #define MISO_PIN PC8
  167. #define MOSI_PIN PD2
  168. #define SS_PIN -1
  169. #define ONBOARD_SD_CS_PIN PC11
  170. #define SDSS PD2
  171. #define SD_DETECT_PIN -1
  172. #endif