Implement MENU_DUMP: offline memory dump from "Support"
If MENU_DUMP is enabled, a new entry at the end of the "Support" menu is added that allows to dump memory for offline use. This allows to trigger a memory dump at any moment during regular usage (either idling or printing) and to recover the dump later even after a hardware reset.
This commit is contained in:
parent
c089ac5341
commit
c31109c750
@ -1801,6 +1801,19 @@ static void lcd_preheat_menu()
|
||||
lcd_generic_preheat_menu();
|
||||
}
|
||||
|
||||
|
||||
#ifdef MENU_DUMP
|
||||
#include "xflash_dump.h"
|
||||
|
||||
static void lcd_dump_memory()
|
||||
{
|
||||
lcd_beeper_quick_feedback();
|
||||
xfdump_dump();
|
||||
lcd_return_to_status();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
//! @brief Show Support Menu
|
||||
//!
|
||||
//! @code{.unparsed}
|
||||
@ -1992,7 +2005,9 @@ static void lcd_support_menu()
|
||||
MENU_ITEM_SUBMENU_P(_i("Voltages"), lcd_menu_voltages);////MSG_MENU_VOLTAGES c=18
|
||||
#endif //defined VOLT_BED_PIN || defined VOLT_PWR_PIN
|
||||
|
||||
|
||||
#ifdef MENU_DUMP
|
||||
MENU_ITEM_FUNCTION_P(_i("Dump memory"), lcd_dump_memory);
|
||||
#endif
|
||||
#ifdef DEBUG_BUILD
|
||||
MENU_ITEM_SUBMENU_P(PSTR("Debug"), lcd_menu_debug);////MSG_DEBUG c=18
|
||||
#endif /* DEBUG_BUILD */
|
||||
|
Loading…
Reference in New Issue
Block a user