|
@ -141,7 +141,7 @@ namespace ExtUI { |
|
|
void setMeshPoint(const xy_uint8_t &pos, const float zval); |
|
|
void setMeshPoint(const xy_uint8_t &pos, const float zval); |
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval); |
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval); |
|
|
inline void onMeshUpdate(const xy_int8_t &pos, const float zval) { onMeshUpdate(pos.x, pos.y, zval); } |
|
|
inline void onMeshUpdate(const xy_int8_t &pos, const float zval) { onMeshUpdate(pos.x, pos.y, zval); } |
|
|
|
|
|
|
|
|
typedef enum : unsigned char { PROBE_START, PROBE_FINISH } probe_state_t; |
|
|
typedef enum : unsigned char { PROBE_START, PROBE_FINISH } probe_state_t; |
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, probe_state_t state); |
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, probe_state_t state); |
|
|
inline void onMeshUpdate(const xy_int8_t &pos, probe_state_t state) { onMeshUpdate(pos.x, pos.y, state); } |
|
|
inline void onMeshUpdate(const xy_int8_t &pos, probe_state_t state) { onMeshUpdate(pos.x, pos.y, state); } |
|
|