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_RAMPS_SMART.h 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. * Arduino Due with RAMPS-SMART pin assignments
  24. *
  25. * Applies to the following boards:
  26. *
  27. * RAMPS_SMART_EFB (Hotend, Fan, Bed)
  28. * RAMPS_SMART_EEB (Hotend0, Hotend1, Bed)
  29. * RAMPS_SMART_EFF (Hotend, Fan0, Fan1)
  30. * RAMPS_SMART_EEF (Hotend0, Hotend1, Fan)
  31. * RAMPS_SMART_SF (Spindle, Controller Fan)
  32. *
  33. * Differences between
  34. * RAMPS_14 | RAMPS-SMART
  35. * NONE | D16 (Additional AUX-3 pin(AUX3_2PIN), shares the same pin with AUX4_18PIN)
  36. * NONE | D17 (Additional AUX-3 pin(AUX3_1PIN), shares the same pin with AUX4_17PIN)
  37. * D0 | NONE
  38. * D1 | NONE
  39. * A3/D57 | NONE
  40. * A4/D58 | NONE
  41. * A5/D59 | A3/D57
  42. * A9/D63 | A4/D58
  43. * A10/D64 | A5/D59
  44. * A11/D65 | D66
  45. * A12/D66 | D67
  46. * A13 | A9
  47. * A14 | A10
  48. * A15 | A11
  49. *
  50. *
  51. * REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER works fine connected to AUX-4 with
  52. * Smart Adapter, but requires removing the AUX3 pin header on the adapter to fit.
  53. * To use the SD card reader, wire its pins to AUX-3 (and use Software SPI).
  54. *
  55. * To use Hardware SPI for SD, the SDSS pin must be set to 52 instead of 53.
  56. * Hardware SPI also requires additional wiring because the board doesn't pass
  57. * the 6-pin SPI header from the DUE board.
  58. * (Search the web for "Arduino DUE Board Pinout" to see the correct header.)
  59. */
  60. #ifndef __SAM3X8E__
  61. #error "Oops! Select 'Arduino Due' in 'Tools > Board.'"
  62. #endif
  63. #define BOARD_NAME "RAMPS-SMART"
  64. #define IS_RAMPS_SMART
  65. #include "pins_RAMPS.h"
  66. // I2C EEPROM with 4K of space
  67. #define I2C_EEPROM
  68. #define E2END 0xFFF
  69. #define RESET_PIN 42 // Resets the board if the jumper is attached
  70. //
  71. // Temperature Sensors
  72. //
  73. #undef TEMP_0_PIN
  74. #define TEMP_0_PIN 9 // Analog Input
  75. #undef TEMP_1_PIN
  76. #define TEMP_1_PIN 10 // Analog Input
  77. #undef TEMP_BED_PIN
  78. #define TEMP_BED_PIN 11 // Analog Input
  79. // SPI for Max6675 or Max31855 Thermocouple
  80. #undef MAX6675_SS_PIN
  81. #if DISABLED(SDSUPPORT)
  82. #define MAX6675_SS_PIN 67 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
  83. #else
  84. #define MAX6675_SS_PIN 67 // Do not use pin 49 as this is tied to the switch inside the SD card socket to detect if there is an SD card present
  85. #endif
  86. //
  87. // LCD / Controller
  88. //
  89. // Support for AZSMZ 12864 LCD with SD Card 3D printer smart controller control panel
  90. #if ENABLED(AZSMZ_12864)
  91. #define BEEPER_PIN 66 // Smart RAMPS 1.42 pinout diagram on RepRap WIKI erroneously says this should be pin 65
  92. #define DOGLCD_A0 59
  93. #define DOGLCD_CS 44
  94. #define BTN_EN1 58
  95. #define BTN_EN2 40
  96. #define BTN_ENC 67 // Smart RAMPS 1.42 pinout diagram on RepRap WIKI erroneously says this should be pin 66
  97. #define SD_DETECT_PIN 49 // Pin 49 for display sd interface, 72 for easy adapter board
  98. #define KILL_PIN 42
  99. #endif