Merge pull request #1749 from thinkyhead/fixup_config
Restore ENDSTOPPULLUPS in Configuration.h
This commit is contained in:
commit
2e7a4bd7db
@ -302,13 +302,18 @@ your extruder heater takes 2 minutes to hit the target on heating.
|
|||||||
// Enable this option for Toshiba steppers
|
// Enable this option for Toshiba steppers
|
||||||
// #define CONFIG_STEPPERS_TOSHIBA
|
// #define CONFIG_STEPPERS_TOSHIBA
|
||||||
|
|
||||||
// The pullups are needed if you directly connect a mechanical endstop between the signal and ground pins.
|
// coarse Endstop Settings
|
||||||
#define ENDSTOPPULLUP_XMAX
|
#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
|
||||||
#define ENDSTOPPULLUP_YMAX
|
|
||||||
#define ENDSTOPPULLUP_ZMAX
|
#ifndef ENDSTOPPULLUPS
|
||||||
#define ENDSTOPPULLUP_XMIN
|
// fine endstop settings: Individual pullups. will be ignored if ENDSTOPPULLUPS is defined
|
||||||
#define ENDSTOPPULLUP_YMIN
|
// #define ENDSTOPPULLUP_XMAX
|
||||||
#define ENDSTOPPULLUP_ZMIN
|
// #define ENDSTOPPULLUP_YMAX
|
||||||
|
// #define ENDSTOPPULLUP_ZMAX
|
||||||
|
// #define ENDSTOPPULLUP_XMIN
|
||||||
|
// #define ENDSTOPPULLUP_YMIN
|
||||||
|
// #define ENDSTOPPULLUP_ZMIN
|
||||||
|
#endif
|
||||||
|
|
||||||
// Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
|
// Mechanical endstop with COM to ground and NC to Signal uses "false" here (most common setup).
|
||||||
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
const bool X_MIN_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
|
||||||
|
Loading…
Reference in New Issue
Block a user