✨ SOUND_ON_DEFAULT option (#24102)
Co-authored-by: Scott Lahteine <github@thinkyhead.com>
This commit is contained in:
@@ -541,7 +541,7 @@ typedef struct SettingsDataStruct {
|
||||
// Buzzer enable/disable
|
||||
//
|
||||
#if ENABLED(SOUND_MENU_ITEM)
|
||||
bool buzzer_enabled;
|
||||
bool sound_on;
|
||||
#endif
|
||||
|
||||
//
|
||||
@@ -1576,7 +1576,7 @@ void MarlinSettings::postprocess() {
|
||||
// Buzzer enable/disable
|
||||
//
|
||||
#if ENABLED(SOUND_MENU_ITEM)
|
||||
EEPROM_WRITE(ui.buzzer_enabled);
|
||||
EEPROM_WRITE(ui.sound_on);
|
||||
#endif
|
||||
|
||||
//
|
||||
@@ -2546,8 +2546,8 @@ void MarlinSettings::postprocess() {
|
||||
// Buzzer enable/disable
|
||||
//
|
||||
#if ENABLED(SOUND_MENU_ITEM)
|
||||
_FIELD_TEST(buzzer_enabled);
|
||||
EEPROM_READ(ui.buzzer_enabled);
|
||||
_FIELD_TEST(sound_on);
|
||||
EEPROM_READ(ui.sound_on);
|
||||
#endif
|
||||
|
||||
//
|
||||
@@ -2945,7 +2945,9 @@ void MarlinSettings::reset() {
|
||||
//
|
||||
// Buzzer enable/disable
|
||||
//
|
||||
TERN_(SOUND_MENU_ITEM, ui.buzzer_enabled = true);
|
||||
#if ENABLED(SOUND_MENU_ITEM)
|
||||
ui.sound_on = ENABLED(SOUND_ON_DEFAULT);
|
||||
#endif
|
||||
|
||||
//
|
||||
// Magnetic Parking Extruder
|
||||
|
||||
Reference in New Issue
Block a user