1012 lines
37 KiB
C
1012 lines
37 KiB
C
/**
|
|
* Marlin 3D Printer Firmware
|
|
* Copyright (c) 2019 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/>.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Include pins definitions
|
|
*
|
|
* Pins numbering schemes:
|
|
*
|
|
* - Digital I/O pin number if used by READ/WRITE macros. (e.g., X_STEP_DIR)
|
|
* The FastIO headers map digital pins to their ports and functions.
|
|
*
|
|
* - Analog Input number if used by analogRead or DAC. (e.g., TEMP_n_PIN)
|
|
* These numbers are the same in any pin mapping.
|
|
*/
|
|
|
|
#define MAX_EXTRUDERS 6
|
|
|
|
#if MB(RAMPS_13_EFB) || MB(RAMPS_14_EFB) || MB(RAMPS_PLUS_EFB) || MB(RAMPS_14_RE_ARM_EFB) || MB(RAMPS_SMART_EFB) || MB(RAMPS_DUO_EFB) || MB(RAMPS4DUE_EFB)
|
|
#define IS_RAMPS_EFB
|
|
#elif MB(RAMPS_13_EEB) || MB(RAMPS_14_EEB) || MB(RAMPS_PLUS_EEB) || MB(RAMPS_14_RE_ARM_EEB) || MB(RAMPS_SMART_EEB) || MB(RAMPS_DUO_EEB) || MB(RAMPS4DUE_EEB)
|
|
#define IS_RAMPS_EEB
|
|
#elif MB(RAMPS_13_EFF) || MB(RAMPS_14_EFF) || MB(RAMPS_PLUS_EFF) || MB(RAMPS_14_RE_ARM_EFF) || MB(RAMPS_SMART_EFF) || MB(RAMPS_DUO_EFF) || MB(RAMPS4DUE_EFF)
|
|
#define IS_RAMPS_EFF
|
|
#elif MB(RAMPS_13_EEF) || MB(RAMPS_14_EEF) || MB(RAMPS_PLUS_EEF) || MB(RAMPS_14_RE_ARM_EEF) || MB(RAMPS_SMART_EEF) || MB(RAMPS_DUO_EEF) || MB(RAMPS4DUE_EEF)
|
|
#define IS_RAMPS_EEF
|
|
#elif MB(RAMPS_13_SF) || MB(RAMPS_14_SF) || MB(RAMPS_PLUS_SF) || MB(RAMPS_14_RE_ARM_SF) || MB(RAMPS_SMART_SF) || MB(RAMPS_DUO_SF) || MB(RAMPS4DUE_SF)
|
|
#define IS_RAMPS_SF
|
|
#endif
|
|
|
|
//
|
|
// RAMPS 1.3 / 1.4 - ATmega1280, ATmega2560
|
|
//
|
|
|
|
#if MB(RAMPS_OLD)
|
|
#include "pins_RAMPS_OLD.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_13_EFB)
|
|
#include "pins_RAMPS_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_13_EEB)
|
|
#include "pins_RAMPS_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_13_EFF)
|
|
#include "pins_RAMPS_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_13_EEF)
|
|
#include "pins_RAMPS_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_13_SF)
|
|
#include "pins_RAMPS_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_14_EFB)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_14_EEB)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_14_EFF)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_14_EEF)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_14_SF)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_PLUS_EFB)
|
|
#include "pins_RAMPS_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_PLUS_EEB)
|
|
#include "pins_RAMPS_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_PLUS_EFF)
|
|
#include "pins_RAMPS_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_PLUS_EEF)
|
|
#include "pins_RAMPS_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RAMPS_PLUS_SF)
|
|
#include "pins_RAMPS_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
|
|
//
|
|
// RAMPS Derivatives - ATmega1280, ATmega2560
|
|
//
|
|
|
|
#elif MB(3DRAG)
|
|
#include "pins_3DRAG.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(K8200)
|
|
#include "pins_K8200.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560 (3DRAG)
|
|
#elif MB(K8400)
|
|
#include "pins_K8400.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560 (3DRAG)
|
|
#elif MB(K8800)
|
|
#include "pins_K8800.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560 (3DRAG)
|
|
#elif MB(BAM_DICE)
|
|
#include "pins_RAMPS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(BAM_DICE_DUE)
|
|
#include "pins_BAM_DICE_DUE.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MKS_BASE)
|
|
#include "pins_MKS_BASE.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MKS_BASE_14)
|
|
#include "pins_MKS_BASE_14.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(MKS_BASE_15)
|
|
#include "pins_MKS_BASE_15.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MKS_BASE_HEROIC)
|
|
#include "pins_MKS_BASE_HEROIC.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MKS_GEN_13)
|
|
#include "pins_MKS_GEN_13.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MKS_GEN_L)
|
|
#include "pins_MKS_GEN_L.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(KFB_2)
|
|
#include "pins_BIQU_KFB_2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(ZRIB_V20)
|
|
#include "pins_ZRIB_V20.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560 (MKS_GEN_13)
|
|
#elif MB(FELIX2)
|
|
#include "pins_FELIX2.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RIGIDBOARD)
|
|
#include "pins_RIGIDBOARD.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(RIGIDBOARD_V2)
|
|
#include "pins_RIGIDBOARD_V2.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(SAINSMART_2IN1)
|
|
#include "pins_SAINSMART_2IN1.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(ULTIMAKER)
|
|
#include "pins_ULTIMAKER.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(ULTIMAKER_OLD)
|
|
#include "pins_ULTIMAKER_OLD.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(AZTEEG_X3)
|
|
#include "pins_AZTEEG_X3.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(AZTEEG_X3_PRO)
|
|
#include "pins_AZTEEG_X3_PRO.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(ULTIMAIN_2)
|
|
#include "pins_ULTIMAIN_2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(FORMBOT_RAPTOR)
|
|
#include "pins_FORMBOT_RAPTOR.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(FORMBOT_RAPTOR2)
|
|
#include "pins_FORMBOT_RAPTOR2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(FORMBOT_TREX2PLUS)
|
|
#include "pins_FORMBOT_TREX2PLUS.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(FORMBOT_TREX3)
|
|
#include "pins_FORMBOT_TREX3.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RUMBA)
|
|
#include "pins_RUMBA.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RUMBA_RAISE3D)
|
|
#include "pins_RUMBA_RAISE3D.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RL200)
|
|
#include "pins_RL200.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(BQ_ZUM_MEGA_3D)
|
|
#include "pins_BQ_ZUM_MEGA_3D.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(MAKEBOARD_MINI)
|
|
#include "pins_MAKEBOARD_MINI.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(TRIGORILLA_13)
|
|
#include "pins_TRIGORILLA_13.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(TRIGORILLA_14)
|
|
#include "pins_TRIGORILLA_14.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(TRIGORILLA_14_11)
|
|
#include "pins_TRIGORILLA_14.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RAMPS_ENDER_4)
|
|
#include "pins_RAMPS_ENDER_4.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RAMPS_CREALITY)
|
|
#include "pins_RAMPS_CREALITY.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RAMPS_DAGOMA)
|
|
#include "pins_RAMPS_DAGOMA.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(FYSETC_F6_13)
|
|
#include "pins_FYSETC_F6_13.h" // ATmega2560 env:fysetc_f6_13
|
|
#elif MB(DUPLICATOR_I3_PLUS)
|
|
#include "pins_DUPLICATOR_I3_PLUS.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(VORON)
|
|
#include "pins_VORON.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(TRONXY_V3_1_0)
|
|
#include "pins_TRONXY_V3_1_0.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(Z_BOLT_X_SERIES)
|
|
#include "pins_Z_BOLT_X_SERIES.h" // ATmega2560 env:megaatmega2560
|
|
|
|
//
|
|
// Other ATmega1280, ATmega2560
|
|
//
|
|
|
|
#elif MB(CNCONTROLS_11)
|
|
#include "pins_CNCONTROLS_11.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(CNCONTROLS_12)
|
|
#include "pins_CNCONTROLS_12.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MIGHTYBOARD_REVE)
|
|
#include "pins_MIGHTYBOARD_REVE.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(CHEAPTRONIC)
|
|
#include "pins_CHEAPTRONIC.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(CHEAPTRONIC_V2)
|
|
#include "pins_CHEAPTRONICv2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(MEGATRONICS)
|
|
#include "pins_MEGATRONICS.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(MEGATRONICS_2)
|
|
#include "pins_MEGATRONICS_2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(MEGATRONICS_3) || MB(MEGATRONICS_31) || MB(MEGATRONICS_32)
|
|
#include "pins_MEGATRONICS_3.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(RAMBO)
|
|
#include "pins_RAMBO.h" // ATmega2560 env:rambo
|
|
#elif MB(MINIRAMBO) || MB(MINIRAMBO_10A)
|
|
#include "pins_MINIRAMBO.h" // ATmega2560 env:rambo
|
|
#elif MB(EINSY_RAMBO)
|
|
#include "pins_EINSY_RAMBO.h" // ATmega2560 env:rambo
|
|
#elif MB(EINSY_RETRO)
|
|
#include "pins_EINSY_RETRO.h" // ATmega2560 env:rambo
|
|
#elif MB(ELEFU_3)
|
|
#include "pins_ELEFU_3.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(LEAPFROG)
|
|
#include "pins_LEAPFROG.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(MEGACONTROLLER)
|
|
#include "pins_MEGACONTROLLER.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(SCOOVO_X9H)
|
|
#include "pins_SCOOVO_X9H.h" // ATmega2560 env:rambo
|
|
#elif MB(GT2560_REV_A)
|
|
#include "pins_GT2560_REV_A.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(GT2560_REV_A_PLUS)
|
|
#include "pins_GT2560_REV_A_PLUS.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
#elif MB(GT2560_V3)
|
|
#include "pins_GT2560_V3.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(GT2560_V3_MC2)
|
|
#include "pins_GT2560_V3_MC2.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(GT2560_V3_A20)
|
|
#include "pins_GT2560_V3_A20.h" // ATmega2560 env:megaatmega2560
|
|
#elif MB(EINSTART_S)
|
|
#include "pins_EINSTART-S.h" // ATmega1280, ATmega2560 env:megaatmega1280 env:megaatmega2560
|
|
|
|
//
|
|
// ATmega1281, ATmega2561
|
|
//
|
|
|
|
#elif MB(MINITRONICS)
|
|
#include "pins_MINITRONICS.h" // ATmega1281 env:megaatmega1280
|
|
#elif MB(SILVER_GATE)
|
|
#include "pins_SILVER_GATE.h" // ATmega2561 env:megaatmega2560
|
|
|
|
//
|
|
// Sanguinololu and Derivatives - ATmega644P, ATmega1284P
|
|
//
|
|
|
|
#elif MB(SANGUINOLOLU_11)
|
|
#include "pins_SANGUINOLOLU_11.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(SANGUINOLOLU_12)
|
|
#include "pins_SANGUINOLOLU_12.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(MELZI)
|
|
#include "pins_MELZI.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(MELZI_MAKR3D)
|
|
#include "pins_MELZI_MAKR3D.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(MELZI_CREALITY)
|
|
#include "pins_MELZI_CREALITY.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(MELZI_MALYAN)
|
|
#include "pins_MELZI_MALYAN.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(MELZI_TRONXY)
|
|
#include "pins_MELZI_TRONXY.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(STB_11)
|
|
#include "pins_STB_11.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(AZTEEG_X1)
|
|
#include "pins_AZTEEG_X1.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
|
|
//
|
|
// Other ATmega644P, ATmega644, ATmega1284P
|
|
//
|
|
|
|
#elif MB(GEN3_MONOLITHIC)
|
|
#include "pins_GEN3_MONOLITHIC.h" // ATmega644P env:sanguino_atmega644p
|
|
#elif MB(GEN3_PLUS)
|
|
#include "pins_GEN3_PLUS.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN6)
|
|
#include "pins_GEN6.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN6_DELUXE)
|
|
#include "pins_GEN6_DELUXE.h" // ATmega644P, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN7_CUSTOM)
|
|
#include "pins_GEN7_CUSTOM.h" // ATmega644P, ATmega644, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN7_12)
|
|
#include "pins_GEN7_12.h" // ATmega644P, ATmega644, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN7_13)
|
|
#include "pins_GEN7_13.h" // ATmega644P, ATmega644, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(GEN7_14)
|
|
#include "pins_GEN7_14.h" // ATmega644P, ATmega644, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
#elif MB(OMCA_A)
|
|
#include "pins_OMCA_A.h" // ATmega644 env:sanguino_atmega644p
|
|
#elif MB(OMCA)
|
|
#include "pins_OMCA.h" // ATmega644P, ATmega644 env:sanguino_atmega644p
|
|
#elif MB(ANET_10)
|
|
#include "pins_ANET_10.h" // ATmega1284P env:sanguino_atmega1284p
|
|
#elif MB(SETHI)
|
|
#include "pins_SETHI.h" // ATmega644P, ATmega644, ATmega1284P env:sanguino_atmega644p env:sanguino_atmega1284p
|
|
|
|
//
|
|
// Teensyduino - AT90USB1286, AT90USB1286P
|
|
//
|
|
|
|
#elif MB(TEENSYLU)
|
|
#include "pins_TEENSYLU.h" // AT90USB1286, AT90USB1286P env:at90usb1286_cdc
|
|
#elif MB(PRINTRBOARD)
|
|
#include "pins_PRINTRBOARD.h" // AT90USB1286 env:at90usb1286_dfu
|
|
#elif MB(PRINTRBOARD_REVF)
|
|
#include "pins_PRINTRBOARD_REVF.h" // AT90USB1286 env:at90usb1286_dfu
|
|
#elif MB(BRAINWAVE)
|
|
#include "pins_BRAINWAVE.h" // AT90USB646 env:at90usb1286_cdc
|
|
#elif MB(BRAINWAVE_PRO)
|
|
#include "pins_BRAINWAVE_PRO.h" // AT90USB1286 env:at90usb1286_cdc
|
|
#elif MB(SAV_MKI)
|
|
#include "pins_SAV_MKI.h" // AT90USB1286 env:at90usb1286_cdc
|
|
#elif MB(TEENSY2)
|
|
#include "pins_TEENSY2.h" // AT90USB1286 env:teensy20
|
|
#elif MB(5DPRINT)
|
|
#include "pins_5DPRINT.h" // AT90USB1286 env:at90usb1286_dfu
|
|
|
|
//
|
|
// LPC1768 ARM Cortex M3
|
|
//
|
|
|
|
#elif MB(RAMPS_14_RE_ARM_EFB)
|
|
#include "pins_RAMPS_RE_ARM.h" // LPC1768 env:LPC1768
|
|
#elif MB(RAMPS_14_RE_ARM_EEB)
|
|
#include "pins_RAMPS_RE_ARM.h" // LPC1768 env:LPC1768
|
|
#elif MB(RAMPS_14_RE_ARM_EFF)
|
|
#include "pins_RAMPS_RE_ARM.h" // LPC1768 env:LPC1768
|
|
#elif MB(RAMPS_14_RE_ARM_EEF)
|
|
#include "pins_RAMPS_RE_ARM.h" // LPC1768 env:LPC1768
|
|
#elif MB(RAMPS_14_RE_ARM_SF)
|
|
#include "pins_RAMPS_RE_ARM.h" // LPC1768 env:LPC1768
|
|
#elif MB(MKS_SBASE)
|
|
#include "pins_MKS_SBASE.h" // LPC1768 env:LPC1768
|
|
#elif MB(MKS_SGEN)
|
|
#include "pins_MKS_SGEN.h" // LPC1769 env:LPC1769
|
|
#elif MB(MKS_SGEN_L)
|
|
#include "pins_MKS_SGEN_L.h" // LPC1768 env:LPC1768
|
|
#elif MB(AZSMZ_MINI)
|
|
#include "pins_AZSMZ_MINI.h" // LPC1768 env:LPC1768
|
|
#elif MB(AZTEEG_X5_GT)
|
|
#include "pins_AZTEEG_X5_GT.h" // LPC1769 env:LPC1769
|
|
#elif MB(AZTEEG_X5_MINI)
|
|
#include "pins_AZTEEG_X5_MINI.h" // LPC1769 env:LPC1769
|
|
#elif MB(AZTEEG_X5_MINI_WIFI)
|
|
#include "pins_AZTEEG_X5_MINI_WIFI.h" // LPC1769 env:LPC1769
|
|
#elif MB(BIQU_BQ111_A4)
|
|
#include "pins_BIQU_BQ111_A4.h" // LPC1768 env:LPC1768
|
|
#elif MB(SELENA_COMPACT)
|
|
#include "pins_SELENA_COMPACT.h" // LPC1768 env:LPC1768
|
|
#elif MB(COHESION3D_REMIX)
|
|
#include "pins_COHESION3D_REMIX.h" // LPC1769 env:LPC1769
|
|
#elif MB(COHESION3D_MINI)
|
|
#include "pins_COHESION3D_MINI.h" // LPC1769 env:LPC1769
|
|
#elif MB(SMOOTHIEBOARD)
|
|
#include "pins_SMOOTHIEBOARD.h" // LPC1769 env:LPC1769
|
|
#elif MB(BIQU_SKR_V1_1)
|
|
#include "pins_BIQU_SKR_V1.1.h" // LPC1768 env:LPC1768
|
|
#elif MB(BIQU_B300_V1_0)
|
|
#include "pins_BIQU_B300_V1.0.h" // LPC1768 env:LPC1768
|
|
#elif MB(BIGTREE_SKR_V1_3)
|
|
#include "pins_BIGTREE_SKR_V1.3.h" // LPC1768 env:LPC1768
|
|
|
|
//
|
|
// Other 32-bit Boards
|
|
//
|
|
|
|
#elif MB(DUE3DOM)
|
|
#include "pins_DUE3DOM.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(DUE3DOM_MINI)
|
|
#include "pins_DUE3DOM_MINI.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RADDS)
|
|
#include "pins_RADDS.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RURAMPS4D_11)
|
|
#include "pins_RURAMPS4D_11.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RURAMPS4D_13)
|
|
#include "pins_RURAMPS4D_13.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_FD_V1)
|
|
#include "pins_RAMPS_FD_V1.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_FD_V2)
|
|
#include "pins_RAMPS_FD_V2.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_SMART_EFB)
|
|
#include "pins_RAMPS_SMART.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_SMART_EEB)
|
|
#include "pins_RAMPS_SMART.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_SMART_EFF)
|
|
#include "pins_RAMPS_SMART.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_SMART_EEF)
|
|
#include "pins_RAMPS_SMART.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_SMART_SF)
|
|
#include "pins_RAMPS_SMART.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_DUO_EFB)
|
|
#include "pins_RAMPS_DUO.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_DUO_EEB)
|
|
#include "pins_RAMPS_DUO.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_DUO_EFF)
|
|
#include "pins_RAMPS_DUO.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_DUO_EEF)
|
|
#include "pins_RAMPS_DUO.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS_DUO_SF)
|
|
#include "pins_RAMPS_DUO.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS4DUE_EFB)
|
|
#include "pins_RAMPS4DUE.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS4DUE_EEB)
|
|
#include "pins_RAMPS4DUE.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS4DUE_EFF)
|
|
#include "pins_RAMPS4DUE.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS4DUE_EEF)
|
|
#include "pins_RAMPS4DUE.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(RAMPS4DUE_SF)
|
|
#include "pins_RAMPS4DUE.h" // SAM3X8E env:DUE env:DUE_USB env:DUE_debug
|
|
#elif MB(ULTRATRONICS_PRO)
|
|
#include "pins_ULTRATRONICS_PRO.h" // SAM3X8E env:DUE env:DUE_debug
|
|
#elif MB(ARCHIM1)
|
|
#include "pins_ARCHIM1.h" // SAM3X8E env:DUE env:DUE_debug
|
|
#elif MB(ARCHIM2)
|
|
#include "pins_ARCHIM2.h" // SAM3X8E env:DUE env:DUE_debug
|
|
#elif MB(ALLIGATOR)
|
|
#include "pins_ALLIGATOR_R2.h" // SAM3X8E env:DUE env:DUE_debug
|
|
#elif MB(ADSK)
|
|
#include "pins_ADSK.h" // SAM3X8E env:DUE env:DUE_debug
|
|
#elif MB(PRINTRBOARD_G2)
|
|
#include "pins_PRINTRBOARD_G2.h" // SAM3X8C env:DUE_USB
|
|
|
|
//
|
|
// STM32 ARM Cortex-M3
|
|
//
|
|
|
|
#elif MB(STM32F1R)
|
|
#include "pins_STM32F1R.h" // STM32F1 env:STM32F1
|
|
#elif MB(STM3R_MINI)
|
|
#include "pins_STM3R_MINI.h" // STM32F1 env:STM32F1
|
|
#elif MB(BIGTREE_SKR_MINI_V1_1)
|
|
#include "pins_BIGTREE_SKR_MINI_V1_1.h" // STM32F1 env:BIGTREE_SKR_MINI
|
|
#elif MB(MALYAN_M200)
|
|
#include "pins_MALYAN_M200.h" // STM32F1 env:malyanm200
|
|
#elif MB(CHITU3D)
|
|
#include "pins_CHITU3D.h" // STM32F1 env:STM32F1
|
|
#elif MB(GTM32_PRO_VB)
|
|
#include "pins_GTM32_PRO_VB.h" // STM32F1 env:STM32F1
|
|
#elif MB(MORPHEUS)
|
|
#include "pins_MORPHEUS.h" // STM32F1 env:STM32F1
|
|
#elif MB(MKS_ROBIN)
|
|
#include "pins_MKS_ROBIN.h" // STM32F1 env:mks_robin
|
|
#elif MB(MKS_ROBIN_MINI)
|
|
#include "pins_MKS_ROBIN_MINI.h" // STM32F1 env:mks_robin_mini
|
|
#elif MB(MKS_ROBIN_NANO)
|
|
#include "pins_MKS_ROBIN_NANO.h" // STM32F1 env:mks_robin_nano
|
|
#elif MB(JGAURORA_A5S_A1)
|
|
#include "pins_JGAURORA_A5S_A1.h" // STM32F1 env:JGAURORA_A5S_A1
|
|
#elif MB(FYSETC_AIO_II)
|
|
#include "pins_FYSETC_AIO_II.h" // STM32F1 env:fysetc_STM32F1
|
|
#elif MB(FYSETC_CHEETAH)
|
|
#include "pins_FYSETC_CHEETAH.h" // STM32F1 env:fysetc_STM32F1
|
|
|
|
//
|
|
// STM32 ARM Cortex-M4F
|
|
//
|
|
|
|
#elif MB(TEENSY31_32)
|
|
#include "pins_TEENSY31_32.h" // TEENSY31_32 env:teensy31
|
|
#elif MB(TEENSY35_36)
|
|
#include "pins_TEENSY35_36.h" // TEENSY35_36 env:teensy35
|
|
#elif MB(BEAST)
|
|
#include "pins_BEAST.h" // STM32F4 env:STM32F4
|
|
#elif MB(STM32F4)
|
|
#include "pins_STM32F4.h" // STM32F4 env:STM32F4
|
|
#elif MB(ARMED)
|
|
#include "pins_ARMED.h" // STM32F4 env:ARMED
|
|
#elif MB(RUMBA32)
|
|
#include "pins_RUMBA32.h" // STM32F4 env:RUMBA32
|
|
#elif MB(BLACK_STM32F407VE)
|
|
#include "pins_BLACK_STM32F407VE.h" // STM32F4 env:black_stm32f407ve
|
|
#elif MB(STEVAL)
|
|
#include "pins_STEVAL.h" // STM32F4 env:STM32F4
|
|
|
|
//
|
|
// ARM Cortex M7
|
|
//
|
|
|
|
#elif MB(THE_BORG)
|
|
#include "pins_THE_BORG.h" // STM32F7 env:STM32F7
|
|
#elif MB(REMRAM_V1)
|
|
#include "pins_REMRAM_V1.h" // STM32F7 env:STM32F7xx
|
|
|
|
//
|
|
// Espressif ESP32
|
|
//
|
|
|
|
#elif MB(ESP32)
|
|
#include "pins_ESP32.h" // ESP32 env:esp32
|
|
|
|
//
|
|
// Linux Native Debug board
|
|
//
|
|
|
|
#elif MB(LINUX_RAMPS)
|
|
#include "pins_RAMPS_LINUX.h" // Linux env:linux_native
|
|
|
|
#else
|
|
#error "Unknown MOTHERBOARD value set in Configuration.h"
|
|
#endif
|
|
|
|
// Define certain undefined pins
|
|
#ifndef X_MS1_PIN
|
|
#define X_MS1_PIN -1
|
|
#endif
|
|
#ifndef X_MS2_PIN
|
|
#define X_MS2_PIN -1
|
|
#endif
|
|
#ifndef X_MS3_PIN
|
|
#define X_MS3_PIN -1
|
|
#endif
|
|
#ifndef Y_MS1_PIN
|
|
#define Y_MS1_PIN -1
|
|
#endif
|
|
#ifndef Y_MS2_PIN
|
|
#define Y_MS2_PIN -1
|
|
#endif
|
|
#ifndef Y_MS3_PIN
|
|
#define Y_MS3_PIN -1
|
|
#endif
|
|
#ifndef Z_MS1_PIN
|
|
#define Z_MS1_PIN -1
|
|
#endif
|
|
#ifndef Z_MS2_PIN
|
|
#define Z_MS2_PIN -1
|
|
#endif
|
|
#ifndef Z_MS3_PIN
|
|
#define Z_MS3_PIN -1
|
|
#endif
|
|
#ifndef E0_MS1_PIN
|
|
#define E0_MS1_PIN -1
|
|
#endif
|
|
#ifndef E0_MS2_PIN
|
|
#define E0_MS2_PIN -1
|
|
#endif
|
|
#ifndef E0_MS3_PIN
|
|
#define E0_MS3_PIN -1
|
|
#endif
|
|
#ifndef E1_MS1_PIN
|
|
#define E1_MS1_PIN -1
|
|
#endif
|
|
#ifndef E1_MS2_PIN
|
|
#define E1_MS2_PIN -1
|
|
#endif
|
|
#ifndef E1_MS3_PIN
|
|
#define E1_MS3_PIN -1
|
|
#endif
|
|
#ifndef E2_MS1_PIN
|
|
#define E2_MS1_PIN -1
|
|
#endif
|
|
#ifndef E2_MS2_PIN
|
|
#define E2_MS2_PIN -1
|
|
#endif
|
|
#ifndef E2_MS3_PIN
|
|
#define E2_MS3_PIN -1
|
|
#endif
|
|
#ifndef E3_MS1_PIN
|
|
#define E3_MS1_PIN -1
|
|
#endif
|
|
#ifndef E3_MS2_PIN
|
|
#define E3_MS2_PIN -1
|
|
#endif
|
|
#ifndef E3_MS3_PIN
|
|
#define E3_MS3_PIN -1
|
|
#endif
|
|
#ifndef E4_MS1_PIN
|
|
#define E4_MS1_PIN -1
|
|
#endif
|
|
#ifndef E4_MS2_PIN
|
|
#define E4_MS2_PIN -1
|
|
#endif
|
|
#ifndef E4_MS3_PIN
|
|
#define E4_MS3_PIN -1
|
|
#endif
|
|
#ifndef E5_MS1_PIN
|
|
#define E5_MS1_PIN -1
|
|
#endif
|
|
#ifndef E5_MS2_PIN
|
|
#define E5_MS2_PIN -1
|
|
#endif
|
|
#ifndef E5_MS3_PIN
|
|
#define E5_MS3_PIN -1
|
|
#endif
|
|
|
|
#ifndef E0_STEP_PIN
|
|
#define E0_STEP_PIN -1
|
|
#endif
|
|
#ifndef E0_DIR_PIN
|
|
#define E0_DIR_PIN -1
|
|
#endif
|
|
#ifndef E0_ENABLE_PIN
|
|
#define E0_ENABLE_PIN -1
|
|
#endif
|
|
#ifndef E1_STEP_PIN
|
|
#define E1_STEP_PIN -1
|
|
#endif
|
|
#ifndef E1_DIR_PIN
|
|
#define E1_DIR_PIN -1
|
|
#endif
|
|
#ifndef E1_ENABLE_PIN
|
|
#define E1_ENABLE_PIN -1
|
|
#endif
|
|
#ifndef E2_STEP_PIN
|
|
#define E2_STEP_PIN -1
|
|
#endif
|
|
#ifndef E2_DIR_PIN
|
|
#define E2_DIR_PIN -1
|
|
#endif
|
|
#ifndef E2_ENABLE_PIN
|
|
#define E2_ENABLE_PIN -1
|
|
#endif
|
|
#ifndef E3_STEP_PIN
|
|
#define E3_STEP_PIN -1
|
|
#endif
|
|
#ifndef E3_DIR_PIN
|
|
#define E3_DIR_PIN -1
|
|
#endif
|
|
#ifndef E3_ENABLE_PIN
|
|
#define E3_ENABLE_PIN -1
|
|
#endif
|
|
#ifndef E4_STEP_PIN
|
|
#define E4_STEP_PIN -1
|
|
#endif
|
|
#ifndef E4_DIR_PIN
|
|
#define E4_DIR_PIN -1
|
|
#endif
|
|
#ifndef E4_ENABLE_PIN
|
|
#define E4_ENABLE_PIN -1
|
|
#endif
|
|
#ifndef E5_STEP_PIN
|
|
#define E5_STEP_PIN -1
|
|
#endif
|
|
#ifndef E5_DIR_PIN
|
|
#define E5_DIR_PIN -1
|
|
#endif
|
|
#ifndef E5_ENABLE_PIN
|
|
#define E5_ENABLE_PIN -1
|
|
#endif
|
|
|
|
#ifndef X_CS_PIN
|
|
#define X_CS_PIN -1
|
|
#endif
|
|
#ifndef Y_CS_PIN
|
|
#define Y_CS_PIN -1
|
|
#endif
|
|
#ifndef Z_CS_PIN
|
|
#define Z_CS_PIN -1
|
|
#endif
|
|
#ifndef E0_CS_PIN
|
|
#define E0_CS_PIN -1
|
|
#endif
|
|
#ifndef E1_CS_PIN
|
|
#define E1_CS_PIN -1
|
|
#endif
|
|
#ifndef E2_CS_PIN
|
|
#define E2_CS_PIN -1
|
|
#endif
|
|
#ifndef E3_CS_PIN
|
|
#define E3_CS_PIN -1
|
|
#endif
|
|
#ifndef E4_CS_PIN
|
|
#define E4_CS_PIN -1
|
|
#endif
|
|
#ifndef E5_CS_PIN
|
|
#define E5_CS_PIN -1
|
|
#endif
|
|
|
|
#ifndef FAN_PIN
|
|
#define FAN_PIN -1
|
|
#endif
|
|
#define FAN0_PIN FAN_PIN
|
|
#ifndef FAN1_PIN
|
|
#define FAN1_PIN -1
|
|
#endif
|
|
#ifndef FAN2_PIN
|
|
#define FAN2_PIN -1
|
|
#endif
|
|
#ifndef CONTROLLER_FAN_PIN
|
|
#define CONTROLLER_FAN_PIN -1
|
|
#endif
|
|
|
|
#ifndef FANMUX0_PIN
|
|
#define FANMUX0_PIN -1
|
|
#endif
|
|
#ifndef FANMUX1_PIN
|
|
#define FANMUX1_PIN -1
|
|
#endif
|
|
#ifndef FANMUX2_PIN
|
|
#define FANMUX2_PIN -1
|
|
#endif
|
|
|
|
#ifndef HEATER_0_PIN
|
|
#define HEATER_0_PIN -1
|
|
#endif
|
|
#ifndef HEATER_1_PIN
|
|
#define HEATER_1_PIN -1
|
|
#endif
|
|
#ifndef HEATER_2_PIN
|
|
#define HEATER_2_PIN -1
|
|
#endif
|
|
#ifndef HEATER_3_PIN
|
|
#define HEATER_3_PIN -1
|
|
#endif
|
|
#ifndef HEATER_4_PIN
|
|
#define HEATER_4_PIN -1
|
|
#endif
|
|
#ifndef HEATER_5_PIN
|
|
#define HEATER_5_PIN -1
|
|
#endif
|
|
#ifndef HEATER_BED_PIN
|
|
#define HEATER_BED_PIN -1
|
|
#endif
|
|
|
|
#ifndef TEMP_0_PIN
|
|
#define TEMP_0_PIN -1
|
|
#endif
|
|
#ifndef TEMP_1_PIN
|
|
#define TEMP_1_PIN -1
|
|
#endif
|
|
#ifndef TEMP_2_PIN
|
|
#define TEMP_2_PIN -1
|
|
#endif
|
|
#ifndef TEMP_3_PIN
|
|
#define TEMP_3_PIN -1
|
|
#endif
|
|
#ifndef TEMP_4_PIN
|
|
#define TEMP_4_PIN -1
|
|
#endif
|
|
#ifndef TEMP_5_PIN
|
|
#define TEMP_5_PIN -1
|
|
#endif
|
|
#ifndef TEMP_BED_PIN
|
|
#define TEMP_BED_PIN -1
|
|
#endif
|
|
|
|
#ifndef SD_DETECT_PIN
|
|
#define SD_DETECT_PIN -1
|
|
#endif
|
|
#ifndef SDPOWER
|
|
#define SDPOWER -1
|
|
#endif
|
|
#ifndef SDSS
|
|
#define SDSS -1
|
|
#endif
|
|
#ifndef LED_PIN
|
|
#define LED_PIN -1
|
|
#endif
|
|
#if POWER_SUPPLY == 0 || !defined(PS_ON_PIN)
|
|
#undef PS_ON_PIN
|
|
#define PS_ON_PIN -1
|
|
#endif
|
|
#ifndef KILL_PIN
|
|
#define KILL_PIN -1
|
|
#endif
|
|
#ifndef SUICIDE_PIN
|
|
#define SUICIDE_PIN -1
|
|
#endif
|
|
|
|
#ifndef NUM_SERVO_PLUGS
|
|
#define NUM_SERVO_PLUGS 4
|
|
#endif
|
|
|
|
//
|
|
// Assign auto fan pins if needed
|
|
//
|
|
#ifndef E0_AUTO_FAN_PIN
|
|
#ifdef ORIG_E0_AUTO_FAN_PIN
|
|
#define E0_AUTO_FAN_PIN ORIG_E0_AUTO_FAN_PIN
|
|
#else
|
|
#define E0_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef E1_AUTO_FAN_PIN
|
|
#ifdef ORIG_E1_AUTO_FAN_PIN
|
|
#define E1_AUTO_FAN_PIN ORIG_E1_AUTO_FAN_PIN
|
|
#else
|
|
#define E1_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef E2_AUTO_FAN_PIN
|
|
#ifdef ORIG_E2_AUTO_FAN_PIN
|
|
#define E2_AUTO_FAN_PIN ORIG_E2_AUTO_FAN_PIN
|
|
#else
|
|
#define E2_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef E3_AUTO_FAN_PIN
|
|
#ifdef ORIG_E3_AUTO_FAN_PIN
|
|
#define E3_AUTO_FAN_PIN ORIG_E3_AUTO_FAN_PIN
|
|
#else
|
|
#define E3_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef E4_AUTO_FAN_PIN
|
|
#ifdef ORIG_E4_AUTO_FAN_PIN
|
|
#define E4_AUTO_FAN_PIN ORIG_E4_AUTO_FAN_PIN
|
|
#else
|
|
#define E4_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef E5_AUTO_FAN_PIN
|
|
#ifdef ORIG_E5_AUTO_FAN_PIN
|
|
#define E5_AUTO_FAN_PIN ORIG_E5_AUTO_FAN_PIN
|
|
#else
|
|
#define E5_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
#ifndef CHAMBER_AUTO_FAN_PIN
|
|
#ifdef ORIG_CHAMBER_AUTO_FAN_PIN
|
|
#define CHAMBER_AUTO_FAN_PIN ORIG_CHAMBER_AUTO_FAN_PIN
|
|
#else
|
|
#define CHAMBER_AUTO_FAN_PIN -1
|
|
#endif
|
|
#endif
|
|
|
|
//
|
|
// Assign endstop pins for boards with only 3 connectors
|
|
//
|
|
#ifdef X_STOP_PIN
|
|
#if X_HOME_DIR < 0
|
|
#define X_MIN_PIN X_STOP_PIN
|
|
#define X_MAX_PIN -1
|
|
#else
|
|
#define X_MIN_PIN -1
|
|
#define X_MAX_PIN X_STOP_PIN
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef Y_STOP_PIN
|
|
#if Y_HOME_DIR < 0
|
|
#define Y_MIN_PIN Y_STOP_PIN
|
|
#define Y_MAX_PIN -1
|
|
#else
|
|
#define Y_MIN_PIN -1
|
|
#define Y_MAX_PIN Y_STOP_PIN
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef Z_STOP_PIN
|
|
#if Z_HOME_DIR < 0
|
|
#define Z_MIN_PIN Z_STOP_PIN
|
|
#define Z_MAX_PIN -1
|
|
#else
|
|
#define Z_MIN_PIN -1
|
|
#define Z_MAX_PIN Z_STOP_PIN
|
|
#endif
|
|
#endif
|
|
|
|
//
|
|
// Disable unused endstop / probe pins
|
|
//
|
|
#if !USES_Z_MIN_PROBE_ENDSTOP
|
|
#undef Z_MIN_PROBE_PIN
|
|
#define Z_MIN_PROBE_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_XMAX_PLUG)
|
|
#undef X_MAX_PIN
|
|
#define X_MAX_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_YMAX_PLUG)
|
|
#undef Y_MAX_PIN
|
|
#define Y_MAX_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_ZMAX_PLUG)
|
|
#undef Z_MAX_PIN
|
|
#define Z_MAX_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_XMIN_PLUG)
|
|
#undef X_MIN_PIN
|
|
#define X_MIN_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_YMIN_PLUG)
|
|
#undef Y_MIN_PIN
|
|
#define Y_MIN_PIN -1
|
|
#endif
|
|
|
|
#if DISABLED(USE_ZMIN_PLUG)
|
|
#undef Z_MIN_PIN
|
|
#define Z_MIN_PIN -1
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_D4
|
|
#define LCD_PINS_D4 -1
|
|
#endif
|
|
|
|
#if HAS_CHARACTER_LCD
|
|
#ifndef LCD_PINS_D5
|
|
#define LCD_PINS_D5 -1
|
|
#endif
|
|
#ifndef LCD_PINS_D6
|
|
#define LCD_PINS_D6 -1
|
|
#endif
|
|
#ifndef LCD_PINS_D7
|
|
#define LCD_PINS_D7 -1
|
|
#endif
|
|
#else
|
|
#undef LCD_PINS_D5
|
|
#undef LCD_PINS_D6
|
|
#undef LCD_PINS_D7
|
|
#endif
|
|
|
|
/**
|
|
* Auto-Assignment for Dual X, Dual Y, Multi-Z Steppers
|
|
*
|
|
* By default X2 is assigned to the next open E plug
|
|
* on the board, then in order, Y2, Z2, Z3. These can be
|
|
* overridden in Configuration.h or Configuration_adv.h.
|
|
*/
|
|
|
|
#define __EPIN(p,q) E##p##_##q##_PIN
|
|
#define _EPIN(p,q) __EPIN(p,q)
|
|
|
|
// The X2 axis, if any, should be the next open extruder port
|
|
#if EITHER(DUAL_X_CARRIAGE, X_DUAL_STEPPER_DRIVERS)
|
|
#ifndef X2_STEP_PIN
|
|
#define X2_STEP_PIN _EPIN(E_STEPPERS, STEP)
|
|
#define X2_DIR_PIN _EPIN(E_STEPPERS, DIR)
|
|
#define X2_ENABLE_PIN _EPIN(E_STEPPERS, ENABLE)
|
|
#if E_STEPPERS >= MAX_EXTRUDERS || !PIN_EXISTS(X2_STEP)
|
|
#error "No E stepper plug left for X2!"
|
|
#endif
|
|
#endif
|
|
#ifndef X2_CS_PIN
|
|
#define X2_CS_PIN _EPIN(E_STEPPERS, CS)
|
|
#endif
|
|
#ifndef X2_MS1_PIN
|
|
#define X2_MS1_PIN _EPIN(E_STEPPERS, MS1)
|
|
#endif
|
|
#ifndef X2_MS2_PIN
|
|
#define X2_MS2_PIN _EPIN(E_STEPPERS, MS2)
|
|
#endif
|
|
#ifndef X2_MS3_PIN
|
|
#define X2_MS3_PIN _EPIN(E_STEPPERS, MS3)
|
|
#endif
|
|
#define Y2_E_INDEX INCREMENT(E_STEPPERS)
|
|
#else
|
|
#define Y2_E_INDEX E_STEPPERS
|
|
#endif
|
|
|
|
// The Y2 axis, if any, should be the next open extruder port
|
|
#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
|
#ifndef Y2_STEP_PIN
|
|
#define Y2_STEP_PIN _EPIN(Y2_E_INDEX, STEP)
|
|
#define Y2_DIR_PIN _EPIN(Y2_E_INDEX, DIR)
|
|
#define Y2_ENABLE_PIN _EPIN(Y2_E_INDEX, ENABLE)
|
|
#if Y2_E_INDEX >= MAX_EXTRUDERS || !PIN_EXISTS(Y2_STEP)
|
|
#error "No E stepper plug left for Y2!"
|
|
#endif
|
|
#endif
|
|
#ifndef Y2_CS_PIN
|
|
#define Y2_CS_PIN _EPIN(Y2_E_INDEX, CS)
|
|
#endif
|
|
#ifndef Y2_MS1_PIN
|
|
#define Y2_MS1_PIN _EPIN(Y2_E_INDEX, MS1)
|
|
#endif
|
|
#ifndef Y2_MS2_PIN
|
|
#define Y2_MS2_PIN _EPIN(Y2_E_INDEX, MS2)
|
|
#endif
|
|
#ifndef Y2_MS3_PIN
|
|
#define Y2_MS3_PIN _EPIN(Y2_E_INDEX, MS3)
|
|
#endif
|
|
#define Z2_E_INDEX INCREMENT(Y2_E_INDEX)
|
|
#else
|
|
#define Z2_E_INDEX Y2_E_INDEX
|
|
#endif
|
|
|
|
// The Z2 axis, if any, should be the next open extruder port
|
|
#if Z_MULTI_STEPPER_DRIVERS
|
|
#ifndef Z2_STEP_PIN
|
|
#define Z2_STEP_PIN _EPIN(Z2_E_INDEX, STEP)
|
|
#define Z2_DIR_PIN _EPIN(Z2_E_INDEX, DIR)
|
|
#define Z2_ENABLE_PIN _EPIN(Z2_E_INDEX, ENABLE)
|
|
#if Z2_E_INDEX >= MAX_EXTRUDERS || !PIN_EXISTS(Z2_STEP)
|
|
#error "No E stepper plug left for Z2!"
|
|
#endif
|
|
#endif
|
|
#ifndef Z2_CS_PIN
|
|
#define Z2_CS_PIN _EPIN(Z2_E_INDEX, CS)
|
|
#endif
|
|
#ifndef Z2_MS1_PIN
|
|
#define Z2_MS1_PIN _EPIN(Z2_E_INDEX, MS1)
|
|
#endif
|
|
#ifndef Z2_MS2_PIN
|
|
#define Z2_MS2_PIN _EPIN(Z2_E_INDEX, MS2)
|
|
#endif
|
|
#ifndef Z2_MS3_PIN
|
|
#define Z2_MS3_PIN _EPIN(Z2_E_INDEX, MS3)
|
|
#endif
|
|
#define Z3_E_INDEX INCREMENT(Z2_E_INDEX)
|
|
#else
|
|
#define Z3_E_INDEX Z2_E_INDEX
|
|
#endif
|
|
|
|
#if ENABLED(Z_TRIPLE_STEPPER_DRIVERS)
|
|
#ifndef Z3_STEP_PIN
|
|
#define Z3_STEP_PIN _EPIN(Z3_E_INDEX, STEP)
|
|
#define Z3_DIR_PIN _EPIN(Z3_E_INDEX, DIR)
|
|
#define Z3_ENABLE_PIN _EPIN(Z3_E_INDEX, ENABLE)
|
|
#if Z3_E_INDEX >= MAX_EXTRUDERS || !PIN_EXISTS(Z3_STEP)
|
|
#error "No E stepper plug left for Z3!"
|
|
#endif
|
|
#endif
|
|
#ifndef Z3_CS_PIN
|
|
#define Z3_CS_PIN _EPIN(Z3_E_INDEX, CS)
|
|
#endif
|
|
#ifndef Z3_MS1_PIN
|
|
#define Z3_MS1_PIN _EPIN(Z3_E_INDEX, MS1)
|
|
#endif
|
|
#ifndef Z3_MS2_PIN
|
|
#define Z3_MS2_PIN _EPIN(Z3_E_INDEX, MS2)
|
|
#endif
|
|
#ifndef Z3_MS3_PIN
|
|
#define Z3_MS3_PIN _EPIN(Z3_E_INDEX, MS3)
|
|
#endif
|
|
#endif
|