|
|
|
@ -496,22 +496,20 @@ public:
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if HAS_PREHEAT
|
|
|
|
|
enum PreheatMask : uint8_t { PM_HOTEND = _BV(0), PM_BED = _BV(1), PM_FAN = _BV(2), PM_CHAMBER = _BV(3) };
|
|
|
|
|
enum PreheatTarget : uint8_t { PT_HOTEND, PT_BED, PT_FAN, PT_CHAMBER, PT_ALL = 0xFF };
|
|
|
|
|
static preheat_t material_preset[PREHEAT_COUNT];
|
|
|
|
|
static PGM_P get_preheat_label(const uint8_t m);
|
|
|
|
|
static void apply_preheat(const uint8_t m, const uint8_t pmask, const uint8_t e=active_extruder);
|
|
|
|
|
static void preheat_set_fan(const uint8_t m) { TERN_(HAS_FAN, apply_preheat(m, PM_FAN)); }
|
|
|
|
|
static void preheat_hotend(const uint8_t m, const uint8_t e=active_extruder) { TERN_(HAS_HOTEND, apply_preheat(m, PM_HOTEND)); }
|
|
|
|
|
static void preheat_set_fan(const uint8_t m) { TERN_(HAS_FAN, apply_preheat(m, _BV(PT_FAN))); }
|
|
|
|
|
static void preheat_hotend(const uint8_t m, const uint8_t e=active_extruder) { TERN_(HAS_HOTEND, apply_preheat(m, _BV(PT_HOTEND))); }
|
|
|
|
|
static void preheat_hotend_and_fan(const uint8_t m, const uint8_t e=active_extruder) { preheat_hotend(m, e); preheat_set_fan(m); }
|
|
|
|
|
static void preheat_bed(const uint8_t m) { TERN_(HAS_HEATED_BED, apply_preheat(m, PM_BED)); }
|
|
|
|
|
static void preheat_all(const uint8_t m) { apply_preheat(m, 0xFF); }
|
|
|
|
|
static void preheat_bed(const uint8_t m) { TERN_(HAS_HEATED_BED, apply_preheat(m, _BV(PT_BED))); }
|
|
|
|
|
static void preheat_all(const uint8_t m) { apply_preheat(m, PT_ALL); }
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#if SCREENS_CAN_TIME_OUT
|
|
|
|
|
static void reset_status_timeout(const millis_t ms) { return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS; }
|
|
|
|
|
#else
|
|
|
|
|
static void reset_status_timeout(const millis_t) {}
|
|
|
|
|
#endif
|
|
|
|
|
static void reset_status_timeout(const millis_t ms) {
|
|
|
|
|
TERN(SCREENS_CAN_TIME_OUT, return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS, UNUSED(ms));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if HAS_LCD_MENU
|
|
|
|
|
|
|
|
|
|