🧑💻 ExtUI::onSetPowerLoss
This commit is contained in:
@@ -113,6 +113,7 @@ void PrintJobRecovery::changed() {
|
||||
purge();
|
||||
else if (IS_SD_PRINTING())
|
||||
save(true);
|
||||
TERN_(EXTENSIBLE_UI, ExtUI::onSetPowerLoss(onoff));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -94,12 +94,12 @@ namespace ExtUI {
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
@@ -120,6 +120,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -81,12 +81,12 @@ namespace ExtUI {
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
@@ -106,6 +106,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -102,12 +102,12 @@ namespace ExtUI {
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
@@ -126,6 +126,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -100,11 +100,11 @@ namespace ExtUI {
|
||||
|
||||
void onPostprocessSettings() {}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
dgus_screen_handler.ConfigurationStoreWritten(success);
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
dgus_screen_handler.ConfigurationStoreRead(success);
|
||||
}
|
||||
|
||||
@@ -123,6 +123,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -88,12 +88,12 @@ namespace ExtUI {
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
@@ -112,6 +112,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -97,7 +97,7 @@ namespace ExtUI {
|
||||
void onLoadSettings(const char *buff) { InterfaceSettingsScreen::loadSettings(buff); }
|
||||
void onPostprocessSettings() {} // Called after loading or resetting stored settings
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
#ifdef ARCHIM2_SPI_FLASH_EEPROM_BACKUP_SIZE
|
||||
if (success && InterfaceSettingsScreen::backupEEPROM()) {
|
||||
SERIAL_ECHOLNPGM("EEPROM backed up to SPI Flash");
|
||||
@@ -106,7 +106,7 @@ namespace ExtUI {
|
||||
UNUSED(success);
|
||||
#endif
|
||||
}
|
||||
void onSettingsLoaded(bool) {}
|
||||
void onSettingsLoaded(const bool) {}
|
||||
|
||||
void onPlayTone(const uint16_t frequency, const uint16_t duration) { sound.play_tone(frequency, duration); }
|
||||
|
||||
@@ -125,6 +125,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -1995,12 +1995,12 @@ namespace ExtUI {
|
||||
SetTouchScreenConfiguration();
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// This is called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
#if HAS_MESH
|
||||
if (ExtUI::getMeshValid()) {
|
||||
uint8_t abl_probe_index = 0;
|
||||
@@ -2026,6 +2026,9 @@ namespace ExtUI {
|
||||
}
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -147,8 +147,8 @@ namespace ExtUI {
|
||||
void onStoreSettings(char*) {}
|
||||
void onLoadSettings(const char*) {}
|
||||
void onPostprocessSettings() {}
|
||||
void onSettingsStored(bool) {}
|
||||
void onSettingsLoaded(bool) {}
|
||||
void onSettingsStored(const bool) {}
|
||||
void onSettingsLoaded(const bool) {}
|
||||
|
||||
#if HAS_MESH
|
||||
void onLevelingStart() {}
|
||||
@@ -158,6 +158,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -79,12 +79,12 @@ namespace ExtUI {
|
||||
// Called after loading or resetting stored settings
|
||||
}
|
||||
|
||||
void onSettingsStored(bool success) {
|
||||
void onSettingsStored(const bool success) {
|
||||
// Called after the entire EEPROM has been written,
|
||||
// whether successful or not.
|
||||
}
|
||||
|
||||
void onSettingsLoaded(bool success) {
|
||||
void onSettingsLoaded(const bool success) {
|
||||
// Called after the entire EEPROM has been read,
|
||||
// whether successful or not.
|
||||
}
|
||||
@@ -103,6 +103,9 @@ namespace ExtUI {
|
||||
#endif
|
||||
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff) {
|
||||
// Called when power-loss is enabled/disabled
|
||||
}
|
||||
void onPowerLoss() {
|
||||
// Called when power-loss state is detected
|
||||
}
|
||||
|
@@ -423,9 +423,10 @@ namespace ExtUI {
|
||||
void onStoreSettings(char *);
|
||||
void onLoadSettings(const char *);
|
||||
void onPostprocessSettings();
|
||||
void onSettingsStored(bool success);
|
||||
void onSettingsLoaded(bool success);
|
||||
void onSettingsStored(const bool success);
|
||||
void onSettingsLoaded(const bool success);
|
||||
#if ENABLED(POWER_LOSS_RECOVERY)
|
||||
void onSetPowerLoss(const bool onoff);
|
||||
void onPowerLoss();
|
||||
void onPowerLossResume();
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user