|
|
|
@ -6256,7 +6256,11 @@ inline void gcode_M17() {
|
|
|
|
|
/**
|
|
|
|
|
* M23: Open a file
|
|
|
|
|
*/
|
|
|
|
|
inline void gcode_M23() { card.openFile(parser.string_arg, true); }
|
|
|
|
|
inline void gcode_M23() {
|
|
|
|
|
// Simplify3D includes the size, so zero out all spaces (#7227)
|
|
|
|
|
for (char *fn = parser.string_arg; *fn; ++fn) if (*fn == ' ') *fn = '\0';
|
|
|
|
|
card.openFile(parser.string_arg, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* M24: Start or Resume SD Print
|
|
|
|
@ -10524,8 +10528,8 @@ void process_next_command() {
|
|
|
|
|
|
|
|
|
|
#if ENABLED(G38_PROBE_TARGET)
|
|
|
|
|
case 38: // G38.2 & G38.3
|
|
|
|
|
if (subcode == 2 || subcode == 3)
|
|
|
|
|
gcode_G38(subcode == 2);
|
|
|
|
|
if (parser.subcode == 2 || parser.subcode == 3)
|
|
|
|
|
gcode_G38(parser.subcode == 2);
|
|
|
|
|
break;
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|