Fix bug in SD Autostart

As pointed out by @marcio-ao in #7638
2.0.x
Scott Lahteine 7 years ago committed by GitHub
parent 88407727ec
commit c4e4a0688c

@ -540,7 +540,7 @@ void CardReader::write_command(char *buf) {
}
void CardReader::checkautostart(bool force) {
if (!force && (!autostart_stilltocheck || ELAPSED(millis(), next_autostart_ms)))
if (!force && (!autostart_stilltocheck || PENDING(millis(), next_autostart_ms)))
return;
autostart_stilltocheck = false;

Loading…
Cancel
Save