|
@@ -799,15 +799,15 @@
|
799
|
799
|
// @section machine
|
800
|
800
|
|
801
|
801
|
// The size of the print bed
|
802
|
|
-#define X_BED_SIZE 207
|
803
|
|
-#define Y_BED_SIZE 182
|
|
802
|
+#define X_BED_SIZE (X_MAX_POS-X_MIN_POS)
|
|
803
|
+#define Y_BED_SIZE (Y_MAX_POS-Y_MIN_POS)
|
804
|
804
|
|
805
|
805
|
// Travel limits (mm) after homing, corresponding to endstop positions.
|
806
|
806
|
#define X_MIN_POS 6
|
807
|
807
|
#define Y_MIN_POS 3
|
808
|
808
|
#define Z_MIN_POS 0
|
809
|
|
-#define X_MAX_POS X_BED_SIZE
|
810
|
|
-#define Y_MAX_POS Y_BED_SIZE
|
|
809
|
+#define X_MAX_POS 207
|
|
810
|
+#define Y_MAX_POS 182
|
811
|
811
|
#define Z_MAX_POS 175
|
812
|
812
|
|
813
|
813
|
/**
|