My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

pins_AZTEEG_X5_GT.h 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  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. * Azteeg X5 GT pin assignments
  25. */
  26. #include "env_validate.h"
  27. #define BOARD_INFO_NAME "Azteeg X5 GT"
  28. #define BOARD_WEBSITE_URL "tinyurl.com/yx8tdqa3"
  29. //
  30. // Servos
  31. //
  32. #define SERVO0_PIN P1_23
  33. //
  34. // Limit Switches
  35. //
  36. #define X_MIN_PIN P1_24
  37. #define X_MAX_PIN P1_27
  38. #define Y_MIN_PIN P1_25
  39. #define Y_MAX_PIN P1_28
  40. #define Z_MIN_PIN P1_26
  41. #define Z_MAX_PIN P1_29
  42. //
  43. // Steppers
  44. //
  45. #define X_STEP_PIN P2_01
  46. #define X_DIR_PIN P0_11
  47. #define X_ENABLE_PIN P0_10
  48. #ifndef X_CS_PIN
  49. #define X_CS_PIN P0_10 // BSD2660 default
  50. #endif
  51. #define Y_STEP_PIN P2_02
  52. #define Y_DIR_PIN P0_20
  53. #define Y_ENABLE_PIN P0_19
  54. #ifndef Y_CS_PIN
  55. #define Y_CS_PIN P0_19 // BSD2660 default
  56. #endif
  57. #define Z_STEP_PIN P2_03
  58. #define Z_DIR_PIN P0_22
  59. #define Z_ENABLE_PIN P0_21
  60. #ifndef Z_CS_PIN
  61. #define Z_CS_PIN P0_21 // BSD2660 default
  62. #endif
  63. #define E0_STEP_PIN P2_00
  64. #define E0_DIR_PIN P0_05
  65. #define E0_ENABLE_PIN P0_04
  66. #ifndef E0_CS_PIN
  67. #define E0_CS_PIN P0_04 // BSD2660 default
  68. #endif
  69. #define E1_STEP_PIN P2_08
  70. #define E1_DIR_PIN P2_13
  71. #define E1_ENABLE_PIN P4_29
  72. #ifndef E1_CS_PIN
  73. #define E1_CS_PIN P4_29 // BSD2660 default
  74. #endif
  75. //
  76. // Temperature Sensors
  77. // 3.3V max when defined as an analog input
  78. //
  79. #define TEMP_BED_PIN P0_23_A0 // A0 (TH1)
  80. #define TEMP_0_PIN P0_24_A1 // A1 (TH2)
  81. #define TEMP_1_PIN P0_25_A2 // A2 (TH3)
  82. //
  83. // Heaters / Fans
  84. //
  85. #define HEATER_BED_PIN P2_07
  86. #define HEATER_0_PIN P2_04
  87. #define HEATER_1_PIN P2_05
  88. #ifndef FAN_PIN
  89. #define FAN_PIN P0_26
  90. #endif
  91. #define FAN1_PIN P1_22
  92. //
  93. // Display
  94. //
  95. #if ANY(VIKI2, miniVIKI)
  96. #define BEEPER_PIN P1_31
  97. #define DOGLCD_A0 P2_06
  98. #define DOGLCD_CS P0_16
  99. #define BTN_EN1 P3_25
  100. #define BTN_EN2 P3_26
  101. #define BTN_ENC P2_11
  102. #define SD_DETECT_PIN P1_18
  103. #define SDSS P1_21
  104. #define STAT_LED_RED_PIN P1_19
  105. #define STAT_LED_BLUE_PIN P1_20
  106. #endif