浏览代码

update max pos

Jim Morris 12 年前
父节点
当前提交
f3aa2a48e7
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11
    0
      Marlin/Configuration.h

+ 11
- 0
Marlin/Configuration.h 查看文件

@@ -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)

正在加载...
取消
保存