Fix bug in SD Autostart

As pointed out by @marcio-ao in #7638
This commit is contained in:
Scott Lahteine 2017-09-24 17:53:39 -05:00 committed by GitHub
parent 88407727ec
commit c4e4a0688c

View file

@ -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;