Auto-check followup

This commit is contained in:
Scott Lahteine 2020-12-14 21:06:56 -06:00
parent 7be57ff9f0
commit 5a6fc3e5b7
2 changed files with 5 additions and 5 deletions

View File

@ -65,7 +65,7 @@
*/
void GcodeSuite::M1001() {
// If there's another auto#.g file to run...
if (TERN(NO_SD_AUTOSTART, false, !card.autofile_check())) return;
if (TERN(NO_SD_AUTOSTART, false, card.autofile_check())) return;
// Purge the recovery file...
TERN_(POWER_LOSS_RECOVERY, recovery.purge());

View File

@ -755,10 +755,10 @@ void CardReader::write_command(char * const buf) {
* - After finishing the previous auto#.g file
* - From the LCD command to begin the auto#.g files
*
* Return 'true' if there was nothing to do
* Return 'true' if an auto file was started
*/
bool CardReader::autofile_check() {
if (!autofile_index) return true;
if (!autofile_index) return false;
if (!isMounted())
mount();
@ -773,11 +773,11 @@ void CardReader::write_command(char * const buf) {
cdroot();
openAndPrintFile(autoname);
autofile_index++;
return false;
return true;
}
}
autofile_cancel();
return true;
return false;
}
#endif