Browse Source

Enable ZigZag AutoBedLeveling on Deltas (PR#2273)

ZigZag has been disabled by fault due to do_topography_map
schlotzz 9 years ago
parent
commit
1e9cf905c7
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      Marlin/Marlin_main.cpp

+ 2
- 0
Marlin/Marlin_main.cpp View File

@@ -2684,6 +2684,8 @@ inline void gcode_G28() {
2684 2684
           // If do_topography_map is set then don't zig-zag. Just scan in one direction.
2685 2685
           // This gets the probe points in more readable order.
2686 2686
           if (!do_topography_map) zig = !zig;
2687
+        #else
2688
+          zig = !zig;
2687 2689
         #endif
2688 2690
 
2689 2691
         for (int xCount = xStart; xCount != xStop; xCount += xInc) {

Loading…
Cancel
Save