Add reference comments to MeshLevelingState

This commit is contained in:
Scott Lahteine 2018-11-09 21:30:48 -06:00
parent c4734b947b
commit 56150ec030

View file

@ -24,12 +24,12 @@
#include "../../../inc/MarlinConfig.h"
enum MeshLevelingState : char {
MeshReport,
MeshStart,
MeshNext,
MeshSet,
MeshSetZOffset,
MeshReset
MeshReport, // G29 S0
MeshStart, // G29 S1
MeshNext, // G29 S2
MeshSet, // G29 S3
MeshSetZOffset, // G29 S4
MeshReset // G29 S5
};
#define MESH_X_DIST ((MESH_MAX_X - (MESH_MIN_X)) / (GRID_MAX_POINTS_X - 1))