Browse Source

Auto-check followup

vanilla_fb_2.0.x
Scott Lahteine 4 years ago
parent
commit
5a6fc3e5b7
  1. 2
      Marlin/src/gcode/sd/M1001.cpp
  2. 8
      Marlin/src/sd/cardreader.cpp

2
Marlin/src/gcode/sd/M1001.cpp

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

8
Marlin/src/sd/cardreader.cpp

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

Loading…
Cancel
Save