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_CHITU3D_V6.h 8.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  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. #if !defined(__STM32F1__) && !defined(__STM32F4__)
  24. #error "Oops! Select an STM32F1/4 board in 'Tools > Board.'"
  25. #endif
  26. /**
  27. * 2017 Victor Perez Marlin for stm32f1 test
  28. */
  29. #define BOARD_INFO_NAME "Chitu3D"
  30. #define DEFAULT_MACHINE_NAME "STM32F103ZET6"
  31. #define DISABLE_JTAG
  32. //
  33. // EEPROM
  34. //
  35. #if NO_EEPROM_SELECTED
  36. #define FLASH_EEPROM_EMULATION
  37. #endif
  38. #if ENABLED(FLASH_EEPROM_EMULATION)
  39. // SoC Flash (framework-arduinoststm32-maple/STM32F1/libraries/EEPROM/EEPROM.h)
  40. #define EEPROM_START_ADDRESS (0x8000000UL + (512 * 1024) - 2 * EEPROM_PAGE_SIZE)
  41. #define EEPROM_PAGE_SIZE (0x800U) // 2KB, but will use 2x more (4KB)
  42. #define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE
  43. #else
  44. #define MARLIN_EEPROM_SIZE 0x800U // On SD, Limit to 2KB, require this amount of RAM
  45. #endif
  46. //
  47. // Limit Switches
  48. //
  49. #define X_STOP_PIN PG10
  50. #define Y_STOP_PIN PA12
  51. #define Z_STOP_PIN PG9
  52. //
  53. // Steppers
  54. //
  55. #define X_ENABLE_PIN PC13
  56. #define X_STEP_PIN PE5
  57. #define X_DIR_PIN PE6
  58. #define Y_ENABLE_PIN PE4
  59. #define Y_STEP_PIN PE2
  60. #define Y_DIR_PIN PE3
  61. #define Z_ENABLE_PIN PE1
  62. #define Z_STEP_PIN PB9
  63. #define Z_DIR_PIN PE0
  64. #define Z2_ENABLE_PIN PF3
  65. #define Z2_STEP_PIN PF5
  66. #define Z2_DIR_PIN PF1
  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 // BOARD FAN
  88. #define FAN_PIN PG13 // FAN
  89. #define FAN_PIN_2 PG14
  90. //
  91. // Misc
  92. //
  93. #define BEEPER_PIN PB0
  94. //#define LED_PIN PD3
  95. //#define POWER_LOSS_PIN PG2 // PG4 PW_DET
  96. #ifndef FIL_RUNOUT_PIN
  97. #define FIL_RUNOUT_PIN PA15 // MT_DET
  98. #endif
  99. #ifndef FIL_RUNOUT2_PIN
  100. #define FIL_RUNOUT2_PIN PF13
  101. #endif
  102. //
  103. // TronXY TFT Support
  104. //
  105. #if ENABLED(FSMC_GRAPHICAL_TFT)
  106. #define FSMC_UPSCALE 3
  107. #define LCD_RESET_PIN PF11
  108. #define LCD_BACKLIGHT_PIN PD13
  109. #define FSMC_CS_PIN PD7
  110. #define FSMC_RS_PIN PD11
  111. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  112. #define FSMC_DMA_DEV DMA2
  113. #define FSMC_DMA_CHANNEL DMA_CH5
  114. #if NEED_TOUCH_PINS
  115. #define TOUCH_CS_PIN PB7 // SPI1_NSS
  116. #define TOUCH_SCK_PIN PA5 // SPI1_SCK
  117. #define TOUCH_MISO_PIN PA6 // SPI1_MISO
  118. #define TOUCH_MOSI_PIN PA7 // SPI1_MOSI
  119. #define BUTTON_DELAY_EDIT 50 // (ms) Button repeat delay for edit screens
  120. #define BUTTON_DELAY_MENU 250 // (ms) Button repeat delay for menus
  121. #ifndef XPT2046_X_CALIBRATION
  122. #define XPT2046_X_CALIBRATION -12316
  123. #endif
  124. #ifndef XPT2046_Y_CALIBRATION
  125. #define XPT2046_Y_CALIBRATION 8981
  126. #endif
  127. #ifndef XPT2046_X_OFFSET
  128. #define XPT2046_X_OFFSET 340
  129. #endif
  130. #ifndef XPT2046_Y_OFFSET
  131. #define XPT2046_Y_OFFSET -20
  132. #endif
  133. #endif
  134. #elif ENABLED(TFT_480x320)
  135. #define TFT_RESET_PIN PF11
  136. #define TFT_BACKLIGHT_PIN PD13
  137. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  138. #define FSMC_CS_PIN PD7
  139. #define FSMC_RS_PIN PD11
  140. #define FSMC_DMA_DEV DMA2
  141. #define FSMC_DMA_CHANNEL DMA_CH5
  142. #define XPT2046_X_CALIBRATION -17181
  143. #define XPT2046_Y_CALIBRATION 11434
  144. #define XPT2046_X_OFFSET 501
  145. #define XPT2046_Y_OFFSET -9
  146. #define TOUCH_CS_PIN PB7 // SPI1_NSS
  147. #define TOUCH_SCK_PIN PA5 // SPI1_SCK
  148. #define TOUCH_MISO_PIN PA6 // SPI1_MISO
  149. #define TOUCH_MOSI_PIN PA7 // SPI1_MOSI
  150. #define TFT_DRIVER ILI9488
  151. #define TFT_BUFFER_SIZE 14400
  152. #endif
  153. // SPI Flash
  154. #define SPI_FLASH_SIZE 0x200000 // 2MB
  155. #define HAS_SPI_FLASH 1
  156. // SPI 2
  157. #define W25QXX_CS_PIN PB12
  158. #define W25QXX_MOSI_PIN PB15
  159. #define W25QXX_MISO_PIN PB14
  160. #define W25QXX_SCK_PIN PB13
  161. #if HAS_TFT_LVGL_UI
  162. #define HAS_SPI_FLASH_FONT 0
  163. #define HAS_GCODE_PREVIEW 1
  164. #define HAS_GCODE_DEFAULT_VIEW_IN_FLASH 0
  165. #define HAS_LANG_SELECT_SCREEN 0
  166. #define HAS_BAK_VIEW_IN_FLASH 0
  167. #define HAS_LOGO_IN_FLASH 0
  168. #define TOUCH_CS_PIN PB7 // SPI1_NSS
  169. #define TOUCH_SCK_PIN PA5 // SPI1_SCK
  170. #define TOUCH_MISO_PIN PA6 // SPI1_MISO
  171. #define TOUCH_MOSI_PIN PA7 // SPI1_MOSI
  172. //#define TOUCH_INT_PIN PB6
  173. #if ENABLED(TFT_LVGL_UI_SPI)
  174. #define SPI_TFT_CS_PIN TOUCH_CS_PIN
  175. #define SPI_TFT_SCK_PIN TOUCH_SCK_PIN
  176. #define SPI_TFT_MISO_PIN TOUCH_MISO_PIN
  177. #define SPI_TFT_MOSI_PIN TOUCH_MOSI_PIN
  178. #define SPI_TFT_DC_PIN PB6
  179. #define SPI_TFT_RST_PIN PF11
  180. #endif
  181. #define LCD_RESET_PIN PF11
  182. #define LCD_BACKLIGHT_PIN PD13
  183. #define TFT_RESET_PIN PF11
  184. #define TFT_BACKLIGHT_PIN PD13
  185. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  186. #define FSMC_CS_PIN PD7
  187. #define FSMC_RS_PIN PD11
  188. #define FSMC_DMA_DEV DMA2
  189. #define FSMC_DMA_CHANNEL DMA_CH5
  190. #define LCD_PIXEL_WIDTH 480
  191. #define LCD_PIXEL_HEIGHT 320
  192. #define LCD_FULL_PIXEL_WIDTH LCD_PIXEL_WIDTH
  193. #define LCD_FULL_PIXEL_HEIGHT LCD_PIXEL_HEIGHT
  194. #define LCD_PIXEL_OFFSET_X 48
  195. #define LCD_PIXEL_OFFSET_Y 48
  196. #define XPT2046_X_CALIBRATION -17181
  197. #define XPT2046_Y_CALIBRATION 11434
  198. #define XPT2046_X_OFFSET 501
  199. #define XPT2046_Y_OFFSET -9
  200. #endif
  201. // SPI1(PA7)=LCD & SPI3(PB5)=STUFF, are not available
  202. // so SPI2 is required.
  203. #define ENABLE_SPI2
  204. #define SCK_PIN PB13
  205. #define MISO_PIN PB14
  206. #define MOSI_PIN PB15
  207. #define SS_PIN PB12
  208. //
  209. // SD Card
  210. //
  211. #define SDIO_SUPPORT
  212. #define SD_DETECT_PIN -1 // PF0, but it isn't connected
  213. #define SDIO_CLOCK 4500000
  214. #define SDIO_READ_RETRIES 16