Drop DISABLE_M(IN|AX)_ENDSTOPS, replace with individual endstop flags
This commit is contained in:
parent
071c742b8a
commit
e5771346a4
@ -275,17 +275,25 @@
|
|||||||
#include "Arduino.h"
|
#include "Arduino.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ENDSTOPPULLUPS
|
* Set ENDSTOPPULLUPS for unused endstop switches
|
||||||
*/
|
*/
|
||||||
#if ENABLED(ENDSTOPPULLUPS)
|
#if ENABLED(ENDSTOPPULLUPS)
|
||||||
#if DISABLED(DISABLE_MAX_ENDSTOPS)
|
#if DISABLED(USE_XMAX_PLUG)
|
||||||
#define ENDSTOPPULLUP_XMAX
|
#define ENDSTOPPULLUP_XMAX
|
||||||
|
#endif
|
||||||
|
#if DISABLED(USE_YMAX_PLUG)
|
||||||
#define ENDSTOPPULLUP_YMAX
|
#define ENDSTOPPULLUP_YMAX
|
||||||
|
#endif
|
||||||
|
#if DISABLED(USE_ZMAX_PLUG)
|
||||||
#define ENDSTOPPULLUP_ZMAX
|
#define ENDSTOPPULLUP_ZMAX
|
||||||
#endif
|
#endif
|
||||||
#if DISABLED(DISABLE_MIN_ENDSTOPS)
|
#if DISABLED(USE_XMIN_PLUG)
|
||||||
#define ENDSTOPPULLUP_XMIN
|
#define ENDSTOPPULLUP_XMIN
|
||||||
|
#endif
|
||||||
|
#if DISABLED(USE_YMIN_PLUG)
|
||||||
#define ENDSTOPPULLUP_YMIN
|
#define ENDSTOPPULLUP_YMIN
|
||||||
|
#endif
|
||||||
|
#if DISABLED(USE_ZMIN_PLUG)
|
||||||
#define ENDSTOPPULLUP_ZMIN
|
#define ENDSTOPPULLUP_ZMIN
|
||||||
#endif
|
#endif
|
||||||
#if DISABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)
|
#if DISABLED(DISABLE_Z_MIN_PROBE_ENDSTOP)
|
||||||
|
@ -346,8 +346,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -370,8 +384,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -419,6 +419,17 @@
|
|||||||
#error TEMP_SENSOR_0 is required.
|
#error TEMP_SENSOR_0 is required.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Endstops
|
||||||
|
*/
|
||||||
|
#if DISABLED(HAS_ENDSTOP_X_MIN) && DISABLED(HAS_ENDSTOP_X_MAX)
|
||||||
|
#error You must enable HAS_ENDSTOP_X_MIN or HAS_ENDSTOP_X_MAX
|
||||||
|
#elif DISABLED(HAS_ENDSTOP_Y_MIN) && DISABLED(HAS_ENDSTOP_Y_MAX)
|
||||||
|
#error You must enable HAS_ENDSTOP_Y_MIN or HAS_ENDSTOP_Y_MAX
|
||||||
|
#elif DISABLED(HAS_ENDSTOP_Z_MIN) && DISABLED(HAS_ENDSTOP_Z_MAX)
|
||||||
|
#error You must enable HAS_ENDSTOP_Z_MIN or HAS_ENDSTOP_Z_MAX
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Warnings for old configurations
|
* Warnings for old configurations
|
||||||
*/
|
*/
|
||||||
@ -456,6 +467,8 @@
|
|||||||
#error Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead.
|
#error Z_RAISE_BEFORE_HOMING is deprecated. Use MIN_Z_HEIGHT_FOR_HOMING instead.
|
||||||
#elif defined(FILAMENT_SENSOR)
|
#elif defined(FILAMENT_SENSOR)
|
||||||
#error FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead.
|
#error FILAMENT_SENSOR is deprecated. Use FILAMENT_WIDTH_SENSOR instead.
|
||||||
|
#elif defined(DISABLE_MAX_ENDSTOPS) || defined(DISABLE_MIN_ENDSTOPS)
|
||||||
|
#error DISABLE_MAX_ENDSTOPS and DISABLE_MIN_ENDSTOPS deprecated - set USE_*_ENDSTOP flags instead
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif //SANITYCHECK_H
|
#endif //SANITYCHECK_H
|
||||||
|
@ -328,8 +328,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -352,8 +366,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -325,8 +325,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -349,8 +363,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -338,8 +338,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -362,8 +376,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -363,8 +363,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -387,8 +401,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -346,8 +346,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -370,8 +384,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -340,8 +340,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -364,8 +378,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -354,8 +354,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
//#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
//#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
//#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -378,8 +392,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -367,8 +367,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -391,8 +405,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -338,8 +338,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -362,8 +376,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -346,8 +346,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -370,8 +384,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -381,8 +381,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
//#define USE_XMIN_PLUG
|
||||||
|
//#define USE_YMIN_PLUG
|
||||||
|
//#define USE_ZMIN_PLUG
|
||||||
|
#define USE_XMAX_PLUG
|
||||||
|
#define USE_YMAX_PLUG
|
||||||
|
#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -405,8 +419,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
#define DISABLE_MIN_ENDSTOPS // Deltas only use min endstops for probing.
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -381,8 +381,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
//#define USE_XMIN_PLUG
|
||||||
|
//#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG // a Z probe
|
||||||
|
#define USE_XMAX_PLUG
|
||||||
|
#define USE_YMAX_PLUG
|
||||||
|
#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -405,8 +419,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
#define DISABLE_MIN_ENDSTOPS // Deltas only use min endstops for probing.
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -381,8 +381,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
//#define USE_XMIN_PLUG
|
||||||
|
//#define USE_YMIN_PLUG
|
||||||
|
//#define USE_ZMIN_PLUG
|
||||||
|
#define USE_XMAX_PLUG
|
||||||
|
#define USE_YMAX_PLUG
|
||||||
|
#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -405,8 +419,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS // Deltas only use min endstops for probing.
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -370,8 +370,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
//#define USE_XMIN_PLUG
|
||||||
|
//#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG // a Z probe
|
||||||
|
#define USE_XMAX_PLUG
|
||||||
|
#define USE_YMAX_PLUG
|
||||||
|
#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -394,8 +408,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS // Deltas only use min endstops for probing.
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -349,8 +349,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
//#define CONFIG_STEPPERS_TOSHIBA
|
//#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -373,8 +387,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -336,8 +336,22 @@
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
#define CONFIG_STEPPERS_TOSHIBA
|
#define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
|
//===========================================================================
|
||||||
|
//============================== Endstop Settings ===========================
|
||||||
|
//===========================================================================
|
||||||
|
|
||||||
// @section homing
|
// @section homing
|
||||||
|
|
||||||
|
// Specify here all the endstop connectors that are connected to any endstop or probe.
|
||||||
|
// Almost all printers will be using one per axis. Probes will use one or more of the
|
||||||
|
// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
|
||||||
|
#define USE_XMIN_PLUG
|
||||||
|
#define USE_YMIN_PLUG
|
||||||
|
#define USE_ZMIN_PLUG
|
||||||
|
//#define USE_XMAX_PLUG
|
||||||
|
//#define USE_YMAX_PLUG
|
||||||
|
//#define USE_ZMAX_PLUG
|
||||||
|
|
||||||
// coarse Endstop Settings
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
|
|
||||||
@ -360,8 +374,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of
|
|||||||
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Y_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MAX_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
const bool Z_MIN_PROBE_ENDSTOP_INVERTING = true; // set to true to invert the logic of the endstop.
|
||||||
//#define DISABLE_MAX_ENDSTOPS
|
|
||||||
//#define DISABLE_MIN_ENDSTOPS
|
|
||||||
|
|
||||||
//===========================================================================
|
//===========================================================================
|
||||||
//============================= Z Probe Options =============================
|
//============================= Z Probe Options =============================
|
||||||
|
@ -209,55 +209,37 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DISABLE_MAX_ENDSTOPS)
|
|
||||||
#undef X_MAX_PIN
|
|
||||||
#undef Y_MAX_PIN
|
|
||||||
#undef Z_MAX_PIN
|
|
||||||
#define X_MAX_PIN -1
|
|
||||||
#define Y_MAX_PIN -1
|
|
||||||
#define Z_MAX_PIN -1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(DISABLE_MIN_ENDSTOPS)
|
|
||||||
#undef X_MIN_PIN
|
|
||||||
#undef Y_MIN_PIN
|
|
||||||
#undef Z_MIN_PIN
|
|
||||||
#define X_MIN_PIN -1
|
|
||||||
#define Y_MIN_PIN -1
|
|
||||||
#define Z_MIN_PIN -1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP) || DISABLED(Z_MIN_PROBE_ENDSTOP) // Allow code to compile regardless of Z_MIN_PROBE_ENDSTOP setting.
|
#if ENABLED(DISABLE_Z_MIN_PROBE_ENDSTOP) || DISABLED(Z_MIN_PROBE_ENDSTOP) // Allow code to compile regardless of Z_MIN_PROBE_ENDSTOP setting.
|
||||||
#undef Z_MIN_PROBE_PIN
|
#undef Z_MIN_PROBE_PIN
|
||||||
#define Z_MIN_PROBE_PIN -1
|
#define Z_MIN_PROBE_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DISABLE_XMAX_ENDSTOP)
|
#if DISABLED(USE_XMAX_PLUG)
|
||||||
#undef X_MAX_PIN
|
#undef X_MAX_PIN
|
||||||
#define X_MAX_PIN -1
|
#define X_MAX_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DISABLE_XMIN_ENDSTOP)
|
#if DISABLED(USE_YMAX_PLUG)
|
||||||
#undef X_MIN_PIN
|
|
||||||
#define X_MIN_PIN -1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(DISABLE_YMAX_ENDSTOP)
|
|
||||||
#undef Y_MAX_PIN
|
#undef Y_MAX_PIN
|
||||||
#define Y_MAX_PIN -1
|
#define Y_MAX_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DISABLE_YMIN_ENDSTOP)
|
#if DISABLED(USE_ZMAX_PLUG)
|
||||||
#undef Y_MIN_PIN
|
|
||||||
#define Y_MIN_PIN -1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if ENABLED(DISABLE_ZMAX_ENDSTOP)
|
|
||||||
#undef Z_MAX_PIN
|
#undef Z_MAX_PIN
|
||||||
#define Z_MAX_PIN -1
|
#define Z_MAX_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(DISABLE_ZMIN_ENDSTOP)
|
#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
|
#undef Z_MIN_PIN
|
||||||
#define Z_MIN_PIN -1
|
#define Z_MIN_PIN -1
|
||||||
#endif
|
#endif
|
||||||
|
@ -29,8 +29,6 @@
|
|||||||
#undef HEATER_1_PIN
|
#undef HEATER_1_PIN
|
||||||
#define HEATER_1_PIN 7 // EXTRUDER 2
|
#define HEATER_1_PIN 7 // EXTRUDER 2
|
||||||
|
|
||||||
#define DISABLE_MAX_ENDSTOPS
|
|
||||||
|
|
||||||
#undef SDPOWER
|
#undef SDPOWER
|
||||||
#define SDPOWER 1
|
#define SDPOWER 1
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user