|
@@ -2507,9 +2507,12 @@ void kill_screen(const char* lcd_msg) {
|
2507
|
2507
|
#if ENABLED(EEPROM_SETTINGS)
|
2508
|
2508
|
MENU_ITEM(function, MSG_STORE_EEPROM, lcd_store_settings);
|
2509
|
2509
|
MENU_ITEM(function, MSG_LOAD_EEPROM, lcd_load_settings);
|
2510
|
|
- MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
|
|
2510
|
+ #endif
|
|
2511
|
+ MENU_ITEM(function, MSG_RESTORE_FAILSAFE, lcd_factory_settings);
|
|
2512
|
+ #if ENABLED(EEPROM_SETTINGS)
|
2511
|
2513
|
MENU_ITEM(gcode, MSG_INIT_EEPROM, PSTR("M502\nM500")); // TODO: Add "Are You Sure?" step
|
2512
|
2514
|
#endif
|
|
2515
|
+
|
2513
|
2516
|
END_MENU();
|
2514
|
2517
|
}
|
2515
|
2518
|
|