123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /**
- * Marlin 3D Printer Firmware
- * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
- *
- * Based on Sprinter and grbl.
- * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-
- /**
- * Arduino Due with RAMPS-SMART pin assignments
- *
- * Applies to the following boards:
- *
- * RAMPS_SMART_EFB (Hotend, Fan, Bed)
- * RAMPS_SMART_EEB (Hotend0, Hotend1, Bed)
- * RAMPS_SMART_EFF (Hotend, Fan0, Fan1)
- * RAMPS_SMART_EEF (Hotend0, Hotend1, Fan)
- * RAMPS_SMART_SF (Spindle, Controller Fan)
- *
- * Differences between
- * RAMPS_14 | RAMPS-SMART
- * NONE | D16 (Additional AUX-3 pin(AUX3_2PIN), shares the same pin with AUX4_18PIN)
- * NONE | D17 (Additional AUX-3 pin(AUX3_1PIN), shares the same pin with AUX4_17PIN)
- * D0 | NONE
- * D1 | NONE
- * A3/D57 | NONE
- * A4/D58 | NONE
- * A5/D59 | A3/D57
- * A9/D63 | A4/D58
- * A10/D64 | A5/D59
- * A11/D65 | D66
- * A12/D66 | D67
- * A13 | A9
- * A14 | A10
- * A15 | A11
- */
-
- #ifndef __SAM3X8E__
- #error "Oops! Make sure you have 'Arduino Due' selected from the 'Tools -> Boards' menu."
- #endif
-
- #ifndef BOARD_NAME
- #define BOARD_NAME "RAMPS-SMART"
- #endif
-
- #define IS_RAMPS_SMART
- #include "pins_RAMPS.h"
-
- //
- // Temperature Sensors
- //
- #undef TEMP_0_PIN
- #define TEMP_0_PIN 9 // Analog Input
-
- #undef TEMP_1_PIN
- #define TEMP_1_PIN 10 // Analog Input
-
- #undef TEMP_BED_PIN
- #define TEMP_BED_PIN 11 // Analog Input
-
- // SPI for Max6675 or Max31855 Thermocouple
- #if DISABLED(SDSUPPORT)
- #undef MAX6675_SS
- #define MAX6675_SS 67 // Do not use pin 53 if there is even the remote possibility of using Display/SD card
- #else
- #undef MAX6675_SS
- #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
- #endif
-
- //
- // LCD / Controller
- //
- // Support for AZSMZ 12864 LCD with SD Card 3D printer smart controller control panel (not tested)
- #if ENABLED(VIKI2)
- #undef BEEPER_PIN
- #define BEEPER_PIN 66
-
- // Pins for DOGM SPI LCD Support
- #undef DOGLCD_A0
- #define DOGLCD_A0 59
-
- #undef DOGLCD_A0
- #define DOGLCD_CS 44
-
- #undef BTN_EN1
- #define BTN_EN1 58
-
- #undef BTN_EN2
- #define BTN_EN2 40
-
- #undef BTN_ENC
- #define BTN_ENC 67
-
- #undef SD_DETECT_PIN
- #define SD_DETECT_PIN 49 // Pin 49 for display sd interface, 72 for easy adapter board
-
- #undef KILL_PIN
- #define KILL_PIN 42
- #endif
|