ソースを参照

indexindexIntoAB is only vald for !DELTA

AnHardt 9年前
コミット
5707a2c3d5
1個のファイルの変更3行の追加2行の削除
  1. 3
    2
      Marlin/Marlin_main.cpp

+ 3
- 2
Marlin/Marlin_main.cpp ファイルの表示

@@ -2616,12 +2616,13 @@ inline void gcode_G28() {
2616 2616
             eqnAMatrix[probePointCounter + 0 * abl2] = xProbe;
2617 2617
             eqnAMatrix[probePointCounter + 1 * abl2] = yProbe;
2618 2618
             eqnAMatrix[probePointCounter + 2 * abl2] = 1;
2619
+            indexIntoAB[xCount][yCount] = probePointCounter;
2619 2620
           #else
2620 2621
             bed_level[xCount][yCount] = measured_z + z_offset;
2621 2622
           #endif
2622 2623
 
2623
-          indexIntoAB[xCount][yCount] = probePointCounter++;
2624
-
2624
+          probePointCounter++;
2625
+  
2625 2626
           idle();
2626 2627
 
2627 2628
         } //xProbe

読み込み中…
キャンセル
保存