Browse Source

enable soft endstops for delta

disable delta by default
Jim Morris 12 years ago
parent
commit
fb20ceabce
1 changed files with 4 additions and 5 deletions
  1. 4
    5
      Marlin/Configuration.h

+ 4
- 5
Marlin/Configuration.h View File

@@ -73,8 +73,8 @@
73 73
 //===========================================================================
74 74
 //============================== Delta Settings =============================
75 75
 //===========================================================================
76
-// Enable DELTA kinematics
77
-#define DELTA
76
+// Enable DELTA kinematics and most of the default configuration for Deltas
77
+//#define DELTA
78 78
 
79 79
 // Make delta curves from many straight lines (linear interpolation).
80 80
 // This is a trade-off between visible corners (not enough segments)
@@ -338,17 +338,16 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
338 338
 #define X_HOME_DIR 1
339 339
 #define Y_HOME_DIR 1
340 340
 #define Z_HOME_DIR 1
341
-#define min_software_endstops false // If true, axis won't move to coordinates less than HOME_POS.
342
-#define max_software_endstops false  // If true, axis won't move to coordinates greater than the defined lengths below.
343 341
 
344 342
 #else
345 343
 
346 344
 #define X_HOME_DIR -1
347 345
 #define Y_HOME_DIR -1
348 346
 #define Z_HOME_DIR -1
347
+#endif // delta
348
+
349 349
 #define min_software_endstops true // If true, axis won't move to coordinates less than HOME_POS.
350 350
 #define max_software_endstops true  // If true, axis won't move to coordinates greater than the defined lengths below.
351
-#endif // delta
352 351
 
353 352
 // Travel limits after homing
354 353
 #ifdef DELTA

Loading…
Cancel
Save