Fix Anycubic Chiron TFT SD menu (#21183)
This commit is contained in:
parent
b33afb790e
commit
088b5cfec2
@ -114,7 +114,7 @@ namespace Anycubic {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Logical Name
|
// Logical Name
|
||||||
TFTSer.print("/");
|
TFTSer.write('/');
|
||||||
if (folderdepth > 0) TFTSer.print(currentfoldername);
|
if (folderdepth > 0) TFTSer.print(currentfoldername);
|
||||||
|
|
||||||
TFTSer.println(filelist.shortFilename());
|
TFTSer.println(filelist.shortFilename());
|
||||||
|
@ -578,8 +578,8 @@ namespace Anycubic {
|
|||||||
case 15: // A15 Resuming from outage
|
case 15: // A15 Resuming from outage
|
||||||
if (printer_state == AC_printer_resuming_from_power_outage) {
|
if (printer_state == AC_printer_resuming_from_power_outage) {
|
||||||
// Need to home here to restore the Z position
|
// Need to home here to restore the Z position
|
||||||
injectCommands(AC_cmnd_power_loss_recovery);
|
injectCommands_P(AC_cmnd_power_loss_recovery);
|
||||||
injectCommands("M1000"); // home and start recovery
|
injectCommands_P(PSTR("M1000")); // home and start recovery
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user