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_SMOOTHIEBOARD.h 2.8KB

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. * Smoothieboard pin assignments
  24. */
  25. #ifndef LPC1769
  26. #error "Oops! Make sure you have the LPC1769 environment selected in your IDE."
  27. #endif
  28. #define BOARD_NAME "Smoothieboard"
  29. #define BOARD_WEBSITE_URL "http://smoothieware.org/smoothieboard"
  30. #undef F_CPU
  31. #define F_CPU 120000000
  32. //
  33. // Servos
  34. //
  35. #define SERVO0_PIN P1_23
  36. //
  37. // Limit Switches
  38. //
  39. #define X_MIN_PIN P1_24
  40. #define X_MAX_PIN P1_25
  41. #define Y_MIN_PIN P1_26
  42. #define Y_MAX_PIN P1_27
  43. #define Z_MIN_PIN P1_28
  44. #define Z_MAX_PIN P1_29
  45. //
  46. // Steppers
  47. //
  48. #define X_STEP_PIN P2_00
  49. #define X_DIR_PIN P0_05
  50. #define X_ENABLE_PIN P0_04
  51. #define Y_STEP_PIN P2_01
  52. #define Y_DIR_PIN P0_11
  53. #define Y_ENABLE_PIN P0_10
  54. #define Z_STEP_PIN P2_02
  55. #define Z_DIR_PIN P0_20
  56. #define Z_ENABLE_PIN P0_19
  57. #define E0_STEP_PIN P2_03
  58. #define E0_DIR_PIN P0_22
  59. #define E0_ENABLE_PIN P0_21
  60. #define E1_STEP_PIN P2_08
  61. #define E1_DIR_PIN P2_13
  62. #define E1_ENABLE_PIN P4_29
  63. //
  64. // Temperature Sensors
  65. // 3.3V max when defined as an analog input
  66. //
  67. #define TEMP_0_PIN 0 // P0.23 (T1)
  68. #define TEMP_BED_PIN 1 // P0.24 (T2)
  69. #define TEMP_1_PIN 2 // P0.25 (T3)
  70. #define TEMP_2_PIN 3 // P0.26 (T4)
  71. //
  72. // Heaters / Fans
  73. //
  74. #define HEATER_BED_PIN P2_05
  75. #define HEATER_0_PIN P2_07
  76. #define HEATER_1_PIN P1_23
  77. #ifndef FAN_PIN
  78. #define FAN_PIN P2_06
  79. #endif
  80. #define FAN1_PIN P2_04
  81. //
  82. // LCD / Controller
  83. //
  84. #if ANY(VIKI2, miniVIKI)
  85. #define BEEPER_PIN P1_31
  86. #define DOGLCD_A0 P2_11
  87. #define DOGLCD_CS P0_16
  88. #define BTN_EN1 P3_25
  89. #define BTN_EN2 P3_26
  90. #define BTN_ENC P1_30
  91. #define SD_DETECT_PIN P1_18
  92. #define SDSS P1_21
  93. #define STAT_LED_RED_PIN P1_19
  94. #define STAT_LED_BLUE_PIN P1_20
  95. #elif HAS_SPI_LCD
  96. #error "Marlin's Smoothieboard support cannot drive your LCD."
  97. #endif