Update for extui recent changes
This commit is contained in:
@@ -165,11 +165,11 @@ bool hasPrintTimer = false;
|
||||
ScreenHandler.OnHomingStart();
|
||||
}
|
||||
|
||||
void onHomingComplete() {
|
||||
void onHomingDone() {
|
||||
ScreenHandler.OnHomingComplete();
|
||||
}
|
||||
|
||||
void onPrintFinished() {
|
||||
void onPrintDone() {
|
||||
ScreenHandler.OnPrintFinished();
|
||||
}
|
||||
|
||||
@@ -185,19 +185,21 @@ bool hasPrintTimer = false;
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onConfigurationStoreWritten(bool success) {
|
||||
void onSettingsStored(bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onConfigurationStoreRead(bool success) {
|
||||
void onSettingsLoaded(bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
#if HAS_MESH
|
||||
void onMeshLevelingStart() {
|
||||
ScreenHandler.OnMeshLevelingStart();
|
||||
void onLevelingStart() {
|
||||
#if HAS_BED_PROBE
|
||||
ScreenHandler.OnMeshLevelingStart();
|
||||
#endif
|
||||
}
|
||||
|
||||
void onMeshUpdate(const int8_t xpos, const int8_t ypos, const float zval) {
|
||||
|
||||
Reference in New Issue
Block a user