Browse Source

Revert "Fix for Meshpositions if printer has negative endstop positions"

Scott Lahteine 7 years ago
parent
commit
4803a4322e
1 changed files with 4 additions and 20 deletions
  1. 4
    20
      Marlin/Configuration_adv.h

+ 4
- 20
Marlin/Configuration_adv.h View File

@@ -645,30 +645,14 @@
645 645
 // Below are the macros that are used to define the borders for the mesh area,
646 646
 // made available here for specialized needs, ie dual extruder setup.
647 647
 #if ENABLED(MESH_BED_LEVELING)
648
-  #if X_MIN_POS < 0
649
-    #define MESH_MIN_X (MESH_INSET)
650
-  #else
651
-    #define MESH_MIN_X (X_MIN_POS + (MESH_INSET))
652
-  #endif
648
+  #define MESH_MIN_X (X_MIN_POS + MESH_INSET)
653 649
   #define MESH_MAX_X (X_MAX_POS - (MESH_INSET))
654
-  #if Y_MIN_POS < 0
655
-    #define MESH_MIN_Y (MESH_INSET)
656
-  #else
657
-    #define MESH_MIN_Y (Y_MIN_POS + (MESH_INSET))
658
-  #endif
650
+  #define MESH_MIN_Y (Y_MIN_POS + MESH_INSET)
659 651
   #define MESH_MAX_Y (Y_MAX_POS - (MESH_INSET))
660 652
 #elif ENABLED(AUTO_BED_LEVELING_UBL)
661
-  #if X_MIN_POS < 0
662
-    #define UBL_MESH_MIN_X (UBL_MESH_INSET)
663
-  #else
664
-    #define UBL_MESH_MIN_X (X_MIN_POS + (UBL_MESH_INSET))
665
-  #endif
653
+  #define UBL_MESH_MIN_X (X_MIN_POS + UBL_MESH_INSET)
666 654
   #define UBL_MESH_MAX_X (X_MAX_POS - (UBL_MESH_INSET))
667
-  #if Y_MIN_POS < 0
668
-    #define UBL_MESH_MIN_Y (UBL_MESH_INSET)
669
-  #else
670
-    #define UBL_MESH_MIN_Y (Y_MIN_POS + (UBL_MESH_INSET))
671
-  #endif
655
+  #define UBL_MESH_MIN_Y (Y_MIN_POS + UBL_MESH_INSET)
672 656
   #define UBL_MESH_MAX_Y (Y_MAX_POS - (UBL_MESH_INSET))
673 657
 
674 658
   // If this is defined, the currently active mesh will be saved in the

Loading…
Cancel
Save