My Marlin configs for Fabrikator Mini and CTC i3 Pro B
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

pins_RAMPS_SMART.h 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /**
  2. * Marlin 3D Printer Firmware
  3. * Copyright (C) 2016 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. #ifndef __SAM3X8E__
  51. #error "Oops! Make sure you have 'Arduino Due' selected from the 'Tools -> Boards' menu."
  52. #endif
  53. #ifndef BOARD_NAME
  54. #define BOARD_NAME "RAMPS-SMART"
  55. #endif
  56. #define IS_RAMPS_SMART
  57. #include "pins_RAMPS.h"
  58. // I2C EEPROM with 4K of space
  59. #define I2C_EEPROM
  60. #define E2END 0xFFF
  61. //
  62. // Temperature Sensors
  63. //
  64. #undef TEMP_0_PIN
  65. #define TEMP_0_PIN 9 // Analog Input
  66. #undef TEMP_1_PIN
  67. #define TEMP_1_PIN 10 // Analog Input
  68. #undef TEMP_BED_PIN
  69. #define TEMP_BED_PIN 11 // Analog Input
  70. // SPI for Max6675 or Max31855 Thermocouple
  71. #if DISABLED(SDSUPPORT)
  72. #undef MAX6675_SS
  73. #define MAX6675_SS 67 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
  74. #else
  75. #undef MAX6675_SS
  76. #define MAX6675_SS 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
  77. #endif
  78. //
  79. // LCD / Controller
  80. //
  81. // Support for AZSMZ 12864 LCD with SD Card 3D printer smart controller control panel
  82. #if ENABLED(AZSMZ_12864)
  83. #define BEEPER_PIN 66 // Smart RAMPS 1.42 pinout diagram on RepRap WIKI erroneously says this should be pin 65
  84. #define DOGLCD_A0 59
  85. #define DOGLCD_CS 44
  86. #define BTN_EN1 58
  87. #define BTN_EN2 40
  88. #define BTN_ENC 67 // Smart RAMPS 1.42 pinout diagram on RepRap WIKI erroneously says this should be pin 66
  89. #define SD_DETECT_PIN 49 // Pin 49 for display sd interface, 72 for easy adapter board
  90. #define KILL_PIN 42
  91. #endif