Ignore M22 during SD print

2.0.x
Scott Lahteine 4 years ago committed by Scott Lahteine
parent 726e2e9bc0
commit 62d20c8b37

@ -35,6 +35,10 @@ void GcodeSuite::M21() { card.mount(); }
/**
* M22: Release SD Card
*/
void GcodeSuite::M22() { card.release(); }
void GcodeSuite::M22() {
if (!IS_SD_PRINTING()) card.release();
}
#endif // SDSUPPORT

Loading…
Cancel
Save