Browse Source

Patch M23 to work around Simplify3D bug

Addressing #7227
pull/1/head
Scott Lahteine 7 years ago
parent
commit
678914be25
  1. 6
      Marlin/Marlin_main.cpp

6
Marlin/Marlin_main.cpp

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

Loading…
Cancel
Save