Browse Source

Add reference comments to MeshLevelingState

Scott Lahteine 5 years ago
parent
commit
56150ec030
1 changed files with 6 additions and 6 deletions
  1. 6
    6
      Marlin/src/feature/bedlevel/mbl/mesh_bed_leveling.h

+ 6
- 6
Marlin/src/feature/bedlevel/mbl/mesh_bed_leveling.h View File

@@ -24,12 +24,12 @@
24 24
 #include "../../../inc/MarlinConfig.h"
25 25
 
26 26
 enum MeshLevelingState : char {
27
-  MeshReport,
28
-  MeshStart,
29
-  MeshNext,
30
-  MeshSet,
31
-  MeshSetZOffset,
32
-  MeshReset
27
+  MeshReport,     // G29 S0
28
+  MeshStart,      // G29 S1
29
+  MeshNext,       // G29 S2
30
+  MeshSet,        // G29 S3
31
+  MeshSetZOffset, // G29 S4
32
+  MeshReset       // G29 S5
33 33
 };
34 34
 
35 35
 #define MESH_X_DIST ((MESH_MAX_X - (MESH_MIN_X)) / (GRID_MAX_POINTS_X - 1))

Loading…
Cancel
Save