mojocorp
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
13 additions and
8 deletions
-
Marlin/src/lcd/extui_example.cpp
-
Marlin/src/lcd/extui_malyan_lcd.cpp
|
|
@ -89,13 +89,15 @@ namespace ExtUI { |
|
|
|
// whether successful or not.
|
|
|
|
} |
|
|
|
|
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) { |
|
|
|
// Called when any mesh points are updated
|
|
|
|
} |
|
|
|
#if HAS_MESH |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) { |
|
|
|
// Called when any mesh points are updated
|
|
|
|
} |
|
|
|
|
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) { |
|
|
|
// Called to indicate a special condition
|
|
|
|
} |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) { |
|
|
|
// Called to indicate a special condition
|
|
|
|
} |
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY) |
|
|
|
void onPowerLossResume() { |
|
|
|
|
|
@ -491,8 +491,11 @@ namespace ExtUI { |
|
|
|
void onLoadSettings(const char*) {} |
|
|
|
void onConfigurationStoreWritten(bool) {} |
|
|
|
void onConfigurationStoreRead(bool) {} |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) {} |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) {} |
|
|
|
|
|
|
|
#if HAS_MESH |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) {} |
|
|
|
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const ExtUI::probe_state_t state) {} |
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(POWER_LOSS_RECOVERY) |
|
|
|
void onPowerLossResume() {} |
|
|
|