mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 14:12:52 +00:00
🎨 Call millis() once in manage_inactivity (#22363)
This commit is contained in:
parent
3bc1d2dd85
commit
972b1e2f00
1 changed files with 0 additions and 2 deletions
|
@ -514,7 +514,6 @@ inline void manage_inactivity(const bool no_stepper_sleep=false) {
|
|||
constexpr millis_t HOME_DEBOUNCE_DELAY = 1000UL;
|
||||
static millis_t next_home_key_ms; // = 0
|
||||
if (!IS_SD_PRINTING() && !READ(HOME_PIN)) { // HOME_PIN goes LOW when pressed
|
||||
const millis_t ms = millis();
|
||||
if (ELAPSED(ms, next_home_key_ms)) {
|
||||
next_home_key_ms = ms + HOME_DEBOUNCE_DELAY;
|
||||
LCD_MESSAGEPGM(MSG_AUTO_HOME);
|
||||
|
@ -526,7 +525,6 @@ inline void manage_inactivity(const bool no_stepper_sleep=false) {
|
|||
#if ENABLED(CUSTOM_USER_BUTTONS)
|
||||
// Handle a custom user button if defined
|
||||
const bool printer_not_busy = !printingIsActive();
|
||||
const millis_t ms = millis();
|
||||
#define HAS_CUSTOM_USER_BUTTON(N) (PIN_EXISTS(BUTTON##N) && defined(BUTTON##N##_HIT_STATE) && defined(BUTTON##N##_GCODE))
|
||||
#define HAS_BETTER_USER_BUTTON(N) HAS_CUSTOM_USER_BUTTON(N) && defined(BUTTON##N##_DESC)
|
||||
#define _CHECK_CUSTOM_USER_BUTTON(N, CODE) do{ \
|
||||
|
|
Loading…
Reference in a new issue