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_common.h 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (c) 2021 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. #include "env_validate.h"
  24. #ifndef BOARD_INFO_NAME
  25. #define BOARD_INFO_NAME "Chitu3D"
  26. #endif
  27. #ifndef DEFAULT_MACHINE_NAME
  28. #define DEFAULT_MACHINE_NAME "STM32F103ZET6"
  29. #endif
  30. #define BOARD_NO_NATIVE_USB
  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) // 2K, but will use 2x more (4K)
  42. #define MARLIN_EEPROM_SIZE EEPROM_PAGE_SIZE
  43. #else
  44. #define MARLIN_EEPROM_SIZE 0x800U // On SD, Limit to 2K, 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. #ifndef Z_STOP_PIN
  52. #define Z_STOP_PIN PG9
  53. #endif
  54. //
  55. // Steppers
  56. //
  57. #define X_ENABLE_PIN PC13
  58. #define X_STEP_PIN PE5
  59. #define X_DIR_PIN PE6
  60. #define Y_ENABLE_PIN PE4
  61. #define Y_STEP_PIN PE2
  62. #define Y_DIR_PIN PE3
  63. #define Z_ENABLE_PIN PE1
  64. #define Z_STEP_PIN PB9
  65. #define Z_DIR_PIN PE0
  66. #define E0_ENABLE_PIN PB8
  67. #define E0_STEP_PIN PB4
  68. #define E0_DIR_PIN PB5
  69. #define E1_ENABLE_PIN PG8
  70. #define E1_STEP_PIN PC7
  71. #define E1_DIR_PIN PC6
  72. //
  73. // Temperature Sensors
  74. //
  75. #define TEMP_0_PIN PA1 // TH1 Analog Input
  76. #define TEMP_BED_PIN PA0 // TB1 Analog Input
  77. //
  78. // Heaters
  79. //
  80. #define HEATER_0_PIN PG12 // HEATER1
  81. #define HEATER_BED_PIN PG11 // HOT BED
  82. //#define HEATER_BED_INVERTING true
  83. //
  84. // Fans
  85. //
  86. #define CONTROLLER_FAN_PIN PD6 // BOARD FAN
  87. #define FAN_PIN PG13 // FAN
  88. #define FAN2_PIN PG14
  89. //
  90. // Misc
  91. //
  92. #define BEEPER_PIN PB0
  93. //#define LED_PIN PD3
  94. //#define POWER_LOSS_PIN PG2 // PG4 PW_DET
  95. #ifndef FIL_RUNOUT_PIN
  96. #define FIL_RUNOUT_PIN PA15 // MT_DET
  97. #endif
  98. // SPI Flash
  99. #define HAS_SPI_FLASH 1
  100. #if HAS_SPI_FLASH
  101. #define SPI_FLASH_SIZE 0x200000 // 2MB
  102. #endif
  103. // SPI 2
  104. #define SPI_FLASH_CS_PIN PB12
  105. #define SPI_FLASH_MOSI_PIN PB15
  106. #define SPI_FLASH_MISO_PIN PB14
  107. #define SPI_FLASH_SCK_PIN PB13
  108. //
  109. // TFT with FSMC interface
  110. //
  111. #if HAS_FSMC_TFT
  112. #define TOUCH_CS_PIN PB7 // SPI1_NSS
  113. #define TOUCH_SCK_PIN PA5 // SPI1_SCK
  114. #define TOUCH_MISO_PIN PA6 // SPI1_MISO
  115. #define TOUCH_MOSI_PIN PA7 // SPI1_MOSI
  116. #define TFT_RESET_PIN PF11
  117. #define TFT_BACKLIGHT_PIN PD13
  118. #define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
  119. #define FSMC_CS_PIN PD7
  120. #define FSMC_RS_PIN PD11
  121. #define FSMC_DMA_DEV DMA2
  122. #define FSMC_DMA_CHANNEL DMA_CH5
  123. #define TFT_CS_PIN FSMC_CS_PIN
  124. #define TFT_RS_PIN FSMC_RS_PIN
  125. #endif
  126. #if HAS_TFT_LVGL_UI
  127. // LVGL
  128. #define HAS_SPI_FLASH_FONT 1
  129. #define HAS_GCODE_PREVIEW 1
  130. #define HAS_GCODE_DEFAULT_VIEW_IN_FLASH 0
  131. #define HAS_LANG_SELECT_SCREEN 1
  132. #define HAS_BAK_VIEW_IN_FLASH 0
  133. #define HAS_LOGO_IN_FLASH 0
  134. #elif ENABLED(TFT_COLOR_UI)
  135. // Color UI
  136. #define TFT_BUFFER_SIZE 14400
  137. #endif
  138. // SPI1(PA7)=LCD & SPI3(PB5)=STUFF, are not available
  139. // so SPI2 is required.
  140. #define SPI_DEVICE 2
  141. #define SD_SCK_PIN PB13
  142. #define SD_MISO_PIN PB14
  143. #define SD_MOSI_PIN PB15
  144. #define SD_SS_PIN PB12
  145. //
  146. // SD Card
  147. //
  148. #define SDIO_SUPPORT
  149. #define SD_DETECT_PIN -1 // PF0, but it isn't connected
  150. #define SDIO_CLOCK 4500000
  151. #define SDIO_READ_RETRIES 16