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_V5.h 6.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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 NOT_TARGET(__STM32F1__, __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 V5"
  30. #define DEFAULT_MACHINE_NAME "STM32F103ZET6"
  31. #define DISABLE_JTAG
  32. //
  33. // EEPROM
  34. //
  35. #define FLASH_EEPROM_EMULATION
  36. #if ENABLED(FLASH_EEPROM_EMULATION)
  37. // SoC Flash (framework-arduinoststm32-maple/STM32F1/libraries/EEPROM/EEPROM.h)
  38. #define EEPROM_START_ADDRESS (0x8000000UL + (512 * 1024) - 2 * EEPROM_PAGE_SIZE)
  39. #define EEPROM_PAGE_SIZE (0x800U) // 2KB, but will use 2x more (4KB)
  40. #define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE
  41. #else
  42. #define MARLIN_EEPROM_SIZE 0x800U // On SD, Limit to 2KB, require this amount of RAM
  43. #endif
  44. //
  45. // Limit Switches
  46. //
  47. #define X_STOP_PIN PG10
  48. #define Y_STOP_PIN PA12
  49. #define Z_STOP_PIN PA14
  50. //
  51. // Steppers
  52. //
  53. #define X_ENABLE_PIN PC13
  54. #define X_STEP_PIN PE5
  55. #define X_DIR_PIN PE6
  56. #define Y_ENABLE_PIN PE4
  57. #define Y_STEP_PIN PE2
  58. #define Y_DIR_PIN PE3
  59. #define Z_ENABLE_PIN PE1
  60. #define Z_STEP_PIN PB9
  61. #define Z_DIR_PIN PE0
  62. #define E0_ENABLE_PIN PB8
  63. #define E0_STEP_PIN PB4
  64. #define E0_DIR_PIN PB5
  65. #define E1_ENABLE_PIN PG8
  66. #define E1_STEP_PIN PC7
  67. #define E1_DIR_PIN PC6
  68. //
  69. // Temperature Sensors
  70. //
  71. #define TEMP_0_PIN PA1 // TH1
  72. #define TEMP_BED_PIN PA0 // TB1
  73. //
  74. // Heaters
  75. //
  76. #define HEATER_0_PIN PG12 // HEATER1
  77. #define HEATER_BED_PIN PG11 // HOT BED
  78. //
  79. // Fans
  80. //
  81. #define CONTROLLER_FAN_PIN PD6 // BOARD FAN
  82. #define FAN_PIN PG13 // FAN
  83. #define FAN_PIN_2 PG14
  84. //
  85. // Misc
  86. //
  87. #define BEEPER_PIN PB0
  88. //#define LED_PIN -1
  89. //#define POWER_LOSS_PIN -1
  90. #define FIL_RUNOUT_PIN PA15
  91. // SPI Flash
  92. #define HAS_SPI_FLASH 1
  93. #if HAS_SPI_FLASH
  94. #define SPI_FLASH_SIZE 0x200000 // 2MB
  95. #endif
  96. // SPI 2
  97. #define W25QXX_CS_PIN PB12
  98. #define W25QXX_MOSI_PIN PB15
  99. #define W25QXX_MISO_PIN PB14
  100. #define W25QXX_SCK_PIN PB13
  101. //
  102. // TronXY TFT Support
  103. //
  104. #if HAS_FSMC_TFT
  105. // Shared FSMC
  106. #define TOUCH_CS_PIN PB7 // SPI1_NSS
  107. #define TOUCH_SCK_PIN PA5 // SPI1_SCK
  108. #define TOUCH_MISO_PIN PA6 // SPI1_MISO
  109. #define TOUCH_MOSI_PIN PA7 // SPI1_MOSI
  110. #define TFT_RESET_PIN PF11
  111. #define TFT_BACKLIGHT_PIN PD13
  112. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  113. #define FSMC_CS_PIN PD7
  114. #define FSMC_RS_PIN PD11
  115. #define FSMC_DMA_DEV DMA2
  116. #define FSMC_DMA_CHANNEL DMA_CH5
  117. #endif
  118. #if ENABLED(TFT_LVGL_UI)
  119. // LVGL
  120. #define HAS_SPI_FLASH_FONT 1
  121. #define HAS_GCODE_PREVIEW 1
  122. #define HAS_GCODE_DEFAULT_VIEW_IN_FLASH 0
  123. #define HAS_LANG_SELECT_SCREEN 1
  124. #define HAS_BAK_VIEW_IN_FLASH 0
  125. #define HAS_LOGO_IN_FLASH 0
  126. #elif ENABLED(TFT_COLOR_UI)
  127. // Color UI
  128. #define TFT_DRIVER ILI9488
  129. #define TFT_BUFFER_SIZE 14400
  130. #elif ENABLED(TFT_CLASSIC_UI)
  131. // Emulated DOGM
  132. #define GRAPHICAL_TFT_UPSCALE 3
  133. #endif
  134. // XPT2046 Touch Screen calibration
  135. #if EITHER(TFT_LVGL_UI, TFT_COLOR_UI)
  136. #ifndef XPT2046_X_CALIBRATION
  137. #define XPT2046_X_CALIBRATION -17181
  138. #endif
  139. #ifndef XPT2046_Y_CALIBRATION
  140. #define XPT2046_Y_CALIBRATION 11434
  141. #endif
  142. #ifndef XPT2046_X_OFFSET
  143. #define XPT2046_X_OFFSET 501
  144. #endif
  145. #ifndef XPT2046_Y_OFFSET
  146. #define XPT2046_Y_OFFSET -9
  147. #endif
  148. #elif ENABLED(TFT_CLASSIC_UI)
  149. #ifndef XPT2046_X_CALIBRATION
  150. #define XPT2046_X_CALIBRATION -12316
  151. #endif
  152. #ifndef XPT2046_Y_CALIBRATION
  153. #define XPT2046_Y_CALIBRATION 8981
  154. #endif
  155. #ifndef XPT2046_X_OFFSET
  156. #define XPT2046_X_OFFSET 340
  157. #endif
  158. #ifndef XPT2046_Y_OFFSET
  159. #define XPT2046_Y_OFFSET -20
  160. #endif
  161. #endif
  162. // SPI1(PA7)=LCD & SPI3(PB5)=STUFF, are not available
  163. // Needs to use SPI2
  164. #define ENABLE_SPI2
  165. #define SCK_PIN PB13
  166. #define MISO_PIN PB14
  167. #define MOSI_PIN PB15
  168. #define SS_PIN PB12
  169. //
  170. // SD Card
  171. //
  172. #define SDIO_SUPPORT
  173. #define SD_DETECT_PIN -1 // PF0, but it isn't connected
  174. #define SDIO_CLOCK 4500000
  175. #define SDIO_READ_RETRIES 16