Various fixes for MarlinUI and ExtUI (#12439)
This commit is contained in:
committed by
Scott Lahteine
parent
d3605cfc26
commit
c1e17037e5
@ -917,7 +917,7 @@
|
||||
}
|
||||
|
||||
inline void set_message_with_feedback(PGM_P const msg_P) {
|
||||
ui.setstatusPGM(msg_P);
|
||||
ui.set_status_P(msg_P);
|
||||
ui.quick_feedback();
|
||||
}
|
||||
|
||||
|
@ -399,14 +399,19 @@ bool pause_print(const float &retract, const point_t &park_point, const float &u
|
||||
}
|
||||
|
||||
/**
|
||||
* For Paused Print:
|
||||
* - Show "Press button (or M108) to resume"
|
||||
*
|
||||
* For Filament Change:
|
||||
* - Show "Insert filament and press button to continue"
|
||||
*
|
||||
* - Wait for a click before returning
|
||||
* - Heaters can time out, reheated before accepting a click
|
||||
* - Heaters can time out and must reheat before continuing
|
||||
*
|
||||
* Used by M125 and M600
|
||||
*/
|
||||
|
||||
#if HAS_LCD_MENU && ENABLED(EMERGENCY_PARSER)
|
||||
#if (HAS_LCD_MENU || ENABLED(EXTENSIBLE_UI)) && ENABLED(EMERGENCY_PARSER)
|
||||
#define _PMSG(L) L
|
||||
#elif ENABLED(EMERGENCY_PARSER)
|
||||
#define _PMSG(L) L##_M108
|
||||
|
Reference in New Issue
Block a user