Fix bad logic in autostart

As pointed out by @marcio-ao in #7638
master
Scott Lahteine 7 years ago committed by GitHub
parent 72e9534d11
commit ac2ac99e15

@ -532,7 +532,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