Skip to content

Commit

Permalink
added stub funtion for onMeshLevelingStart
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellodum committed Oct 15, 2021
1 parent e4c9a56 commit 14a65f1
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Marlin/src/lcd/extui_btt_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -124,11 +124,13 @@ namespace ExtUI {
}

#if HAS_MESH
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) {
void onMeshLevelingStart() {}

void onMeshUpdate(const int8_t xpos, const int8_t ypos, const_float_t zval) {
// Called when any mesh points are updated
}

void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) {
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const probe_state_t state) {
// Called to indicate a special condition
}
#endif
Expand Down

0 comments on commit 14a65f1

Please sign in to comment.