Merge pull request #2 from davidramiro/master
Fix buffer issue with S3D USB printing
This commit is contained in:
commit
0bd5ca912e
|
@ -8553,7 +8553,7 @@ inline void gcode_M109() {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// flush the serial buffer after heating to prevent lockup by m105
|
// flush the serial buffer after heating to prevent lockup by m105
|
||||||
flush_and_request_resend();
|
SERIAL_FLUSH();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8708,7 +8708,7 @@ inline void gcode_M109() {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// flush the serial buffer after heating to prevent lockup by m105
|
// flush the serial buffer after heating to prevent lockup by m105
|
||||||
flush_and_request_resend();
|
SERIAL_FLUSH();
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif // HAS_HEATED_BED
|
#endif // HAS_HEATED_BED
|
||||||
|
|
Loading…
Reference in New Issue