Skip to content

Commit

Permalink
πŸ§‘β€πŸ’» ExtUI::onSetPowerLoss
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Mar 22, 2023
1 parent 2ecd4cc commit 91b5015
Show file tree
Hide file tree
Showing 11 changed files with 49 additions and 20 deletions.
1 change: 1 addition & 0 deletions Marlin/src/feature/powerloss.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ void PrintJobRecovery::changed() {
purge();
else if (IS_SD_PRINTING())
save(true);
TERN_(EXTENSIBLE_UI, ExtUI::onSetPowerLoss(onoff));
}

/**
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/anycubic_chiron/chiron_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/anycubic_i3mega/anycubic_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/dgus/dgus_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/dgus_reloaded/dgus_reloaded_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/example/example.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/ftdi_eve_touch_ui/ftdi_eve_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand All @@ -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); }

Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/ia_creality/creality_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/malyan/malyan_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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() {}
Expand All @@ -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
}
Expand Down
7 changes: 5 additions & 2 deletions Marlin/src/lcd/extui/nextion/nextion_extui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
}
Expand All @@ -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
}
Expand Down
5 changes: 3 additions & 2 deletions Marlin/src/lcd/extui/ui_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 91b5015

Please sign in to comment.