Browse Source

update max pos

Jim Morris 12 years ago
parent
commit
f3aa2a48e7
1 changed files with 11 additions and 0 deletions
  1. 11
    0
      Marlin/Configuration.h

+ 11
- 0
Marlin/Configuration.h View File

@@ -351,12 +351,23 @@ const bool Z_ENDSTOPS_INVERTING = true; // set to true to invert the logic of th
351 351
 #endif // delta
352 352
 
353 353
 // Travel limits after homing
354
+#ifdef DELTA
355
+#define X_MAX_POS 90
356
+#define X_MIN_POS -90
357
+#define Y_MAX_POS 90
358
+#define Y_MIN_POS -90
359
+#define Z_MAX_POS MANUAL_Z_HOME_POS
360
+#define Z_MIN_POS 0
361
+
362
+#else
363
+
354 364
 #define X_MAX_POS 205
355 365
 #define X_MIN_POS 0
356 366
 #define Y_MAX_POS 205
357 367
 #define Y_MIN_POS 0
358 368
 #define Z_MAX_POS 200
359 369
 #define Z_MIN_POS 0
370
+#endif // DELTA
360 371
 
361 372
 #define X_MAX_LENGTH (X_MAX_POS - X_MIN_POS)
362 373
 #define Y_MAX_LENGTH (Y_MAX_POS - Y_MIN_POS)

Loading…
Cancel
Save