Browse Source

Drop DISABLE_M(IN|AX)_ENDSTOPS, replace with individual endstop flags

This is follow-up the commit e5771346a4.
Update unnoticed files.
esenapaj 8 years ago
parent
commit
1326dc7258

+ 14
- 2
Marlin/example_configurations/Hephestos_2/Configuration.h View File

@@ -340,8 +340,22 @@
340 340
 // Enable this option for Toshiba steppers
341 341
 //#define CONFIG_STEPPERS_TOSHIBA
342 342
 
343
+//===========================================================================
344
+//============================== Endstop Settings ===========================
345
+//===========================================================================
346
+
343 347
 // @section homing
344 348
 
349
+// Specify here all the endstop connectors that are connected to any endstop or probe.
350
+// Almost all printers will be using one per axis. Probes will use one or more of the
351
+// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
352
+#define USE_XMIN_PLUG
353
+#define USE_YMIN_PLUG
354
+#define USE_ZMIN_PLUG
355
+//#define USE_XMAX_PLUG
356
+//#define USE_YMAX_PLUG
357
+//#define USE_ZMAX_PLUG
358
+
345 359
 // coarse Endstop Settings
346 360
 #define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
347 361
 
@@ -364,8 +378,6 @@ const bool X_MAX_ENDSTOP_INVERTING = true;  // set to true to invert the logic o
364 378
 const bool Y_MAX_ENDSTOP_INVERTING = true;  // set to true to invert the logic of the endstop.
365 379
 const bool Z_MAX_ENDSTOP_INVERTING = true;  // set to true to invert the logic of the endstop.
366 380
 const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
367
-#define DISABLE_MAX_ENDSTOPS
368
-//#define DISABLE_MIN_ENDSTOPS
369 381
 
370 382
 //===========================================================================
371 383
 //============================= Z Probe Options =============================

+ 14
- 2
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

@@ -374,8 +374,22 @@
374 374
 // Enable this option for Toshiba steppers
375 375
 //#define CONFIG_STEPPERS_TOSHIBA
376 376
 
377
+//===========================================================================
378
+//============================== Endstop Settings ===========================
379
+//===========================================================================
380
+
377 381
 // @section homing
378 382
 
383
+// Specify here all the endstop connectors that are connected to any endstop or probe.
384
+// Almost all printers will be using one per axis. Probes will use one or more of the
385
+// extra connectors. Leave undefined any used for non-endstop and non-probe purposes.
386
+//#define USE_XMIN_PLUG
387
+//#define USE_YMIN_PLUG
388
+#define USE_ZMIN_PLUG // a Z probe
389
+#define USE_XMAX_PLUG
390
+#define USE_YMAX_PLUG
391
+#define USE_ZMAX_PLUG
392
+
379 393
 // coarse Endstop Settings
380 394
 //#define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
381 395
 
@@ -398,8 +412,6 @@ const bool X_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic o
398 412
 const bool Y_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
399 413
 const bool Z_MAX_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
400 414
 const bool Z_MIN_PROBE_ENDSTOP_INVERTING = false; // set to true to invert the logic of the endstop.
401
-//#define DISABLE_MAX_ENDSTOPS
402
-//#define DISABLE_MIN_ENDSTOPS
403 415
 
404 416
 //===========================================================================
405 417
 //============================= Z Probe Options =============================

Loading…
Cancel
Save