Skip to content

Commit

Permalink
馃帹 Small tweak, ms => now
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Jun 27, 2021
1 parent 003ce25 commit ec518e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Marlin/src/feature/power.cpp
Expand Up @@ -105,12 +105,12 @@ bool Power::is_power_needed() {

void Power::check() {
static millis_t nextPowerCheck = 0;
millis_t ms = millis();
if (ELAPSED(ms, nextPowerCheck)) {
nextPowerCheck = ms + 2500UL;
millis_t now = millis();
if (ELAPSED(now, nextPowerCheck)) {
nextPowerCheck = now + 2500UL;
if (is_power_needed())
power_on();
else if (!lastPowerOn || (POWER_TIMEOUT > 0 && ELAPSED(ms, lastPowerOn + SEC_TO_MS(POWER_TIMEOUT))))
else if (!lastPowerOn || (POWER_TIMEOUT > 0 && ELAPSED(now, lastPowerOn + SEC_TO_MS(POWER_TIMEOUT))))
power_off();
}
}
Expand Down

0 comments on commit ec518e6

Please sign in to comment.