|
@@ -61,6 +61,10 @@ namespace ExtUI {
|
61
|
61
|
constexpr uint8_t hotendCount = HOTENDS;
|
62
|
62
|
constexpr uint8_t fanCount = FAN_COUNT;
|
63
|
63
|
|
|
64
|
+ #if HAS_MESH
|
|
65
|
+ typedef float (&bed_mesh_t)[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
|
|
66
|
+ #endif
|
|
67
|
+
|
64
|
68
|
bool isMoving();
|
65
|
69
|
bool isAxisPositionKnown(const axis_t);
|
66
|
70
|
bool isPositionKnown(); // Axis position guaranteed, steppers active since homing
|
|
@@ -122,9 +126,8 @@ namespace ExtUI {
|
122
|
126
|
#if HAS_LEVELING
|
123
|
127
|
bool getLevelingActive();
|
124
|
128
|
void setLevelingActive(const bool);
|
|
129
|
+ bool getMeshValid();
|
125
|
130
|
#if HAS_MESH
|
126
|
|
- #include "../../feature/bedlevel/bedlevel.h"
|
127
|
|
- bool getMeshValid();
|
128
|
131
|
bed_mesh_t getMeshArray();
|
129
|
132
|
float getMeshPoint(const uint8_t xpos, const uint8_t ypos);
|
130
|
133
|
void setMeshPoint(const uint8_t xpos, const uint8_t ypos, const float zval);
|