ソースを参照

Tweak some code comments

Scott Lahteine 8年前
コミット
1f776f6034
1個のファイルの変更3行の追加3行の削除
  1. 3
    3
      Marlin/Marlin_main.cpp

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

2540
       SERIAL_ECHOLNPGM(")");
2540
       SERIAL_ECHOLNPGM(")");
2541
     }
2541
     }
2542
   #endif
2542
   #endif
2543
-}
2543
+} // homeaxis()
2544
 
2544
 
2545
 #if ENABLED(FWRETRACT)
2545
 #if ENABLED(FWRETRACT)
2546
 
2546
 
3659
           double xProbe = left_probe_bed_position + xGridSpacing * xCount;
3659
           double xProbe = left_probe_bed_position + xGridSpacing * xCount;
3660
 
3660
 
3661
           #if ENABLED(DELTA)
3661
           #if ENABLED(DELTA)
3662
-            // Avoid probing the corners (outside the round or hexagon print surface) on a delta printer.
3662
+            // Avoid probing outside the round or hexagonal area of a delta printer
3663
             float distance_from_center = HYPOT(xProbe, yProbe);
3663
             float distance_from_center = HYPOT(xProbe, yProbe);
3664
             if (distance_from_center > DELTA_PROBEABLE_RADIUS) continue;
3664
             if (distance_from_center > DELTA_PROBEABLE_RADIUS) continue;
3665
-          #endif //DELTA
3665
+          #endif
3666
 
3666
 
3667
           float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
3667
           float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
3668
 
3668
 

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