My Marlin configs for Fabrikator Mini and CTC i3 Pro B
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

pins_MKS_ROBIN_NANO.h 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2019 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 <http://www.gnu.org/licenses/>.
  20. *
  21. */
  22. /**
  23. * MKS Robin nano (STM32F130VET6) board pin assignments
  24. */
  25. #ifndef __STM32F1__
  26. #error "Oops! Select an STM32F1 board in 'Tools > Board.'"
  27. #endif
  28. #if HOTENDS > 2 || E_STEPPERS > 2
  29. #error "MKS Robin nano supports up to 2 hotends / E-steppers. Comment out this line to continue."
  30. #endif
  31. #define BOARD_NAME "MKS Robin nano"
  32. //
  33. // Release PB4 (Y_ENABLE_PIN) from JTAG NRST role
  34. //
  35. #define DISABLE_DEBUG
  36. //
  37. // Note: MKS Robin board is using SPI2 interface.
  38. //
  39. #define SPI_MODULE 2
  40. //
  41. // Limit Switches
  42. //
  43. #define X_STOP_PIN PA15
  44. #define Y_STOP_PIN PA12
  45. #define Z_MIN_PIN PA11
  46. #define Z_MAX_PIN PC4
  47. //
  48. // Steppers
  49. //
  50. #define X_ENABLE_PIN PE4
  51. #define X_STEP_PIN PE3
  52. #define X_DIR_PIN PE2
  53. #define Y_ENABLE_PIN PE1
  54. #define Y_STEP_PIN PE0
  55. #define Y_DIR_PIN PB9
  56. #define Z_ENABLE_PIN PB8
  57. #define Z_STEP_PIN PB5
  58. #define Z_DIR_PIN PB4
  59. #define E0_ENABLE_PIN PB3
  60. #define E0_STEP_PIN PD6
  61. #define E0_DIR_PIN PD3
  62. #define E1_ENABLE_PIN PA3
  63. #define E1_STEP_PIN PA6
  64. #define E1_DIR_PIN PA1
  65. //
  66. // Temperature Sensors
  67. //
  68. #define TEMP_0_PIN PC1 // TH1
  69. #define TEMP_1_PIN PC2 // TH2
  70. #define TEMP_BED_PIN PC0 // TB1
  71. //
  72. // Heaters / Fans
  73. //
  74. #define HEATER_0_PIN PC3 // HEATER1
  75. #define HEATER_1_PIN PB0 // HEATER2
  76. #define HEATER_BED_PIN PA0 // HOT BED
  77. #define FAN_PIN PA1 // FAN
  78. #define BTN_ENC PC13 // Pin is not connected. Real pin is needed to enable encoder's push button functionality used by touch screen
  79. //#define MAX6675_SS_PIN PE5 // TC1 - CS1
  80. //#define MAX6675_SS_PIN PE6 // TC2 - CS2
  81. #define POWER_LOSS_PIN PA2 // PW_DET
  82. #define PS_ON_PIN PA3 // PW_OFF
  83. #define FIL_RUNOUT_PIN PA4 // MT_DET
  84. #define BEEPER_PIN PC5
  85. #define LED_PIN PB2
  86. /**
  87. * Note: MKS Robin TFT screens may have different TFT controllers
  88. * If the screen stays white, disable 'LCD_RESET_PIN' to rely on the bootloader to do screen initialization.
  89. */
  90. #define LCD_RESET_PIN PF6
  91. #define NO_LCD_REINIT // Suppress LCD re-initialization
  92. #define LCD_BACKLIGHT_PIN PD13
  93. #define FSMC_CS_PIN PD7 // NE4
  94. #define FSMC_RS_PIN PD11 // A0
  95. #define TOUCH_CS PA7
  96. #define SD_DETECT_PIN PD12