Suppress the line mismatch error after M303

This commit is contained in:
Scott Lahteine 2015-05-21 16:27:22 -07:00
parent 50bd7493cc
commit bde9c70d42

View File

@ -4465,6 +4465,9 @@ inline void gcode_M303() {
int c = code_seen('C') ? code_value_short() : 5;
float temp = code_seen('S') ? code_value() : (e < 0 ? 70.0 : 150.0);
PID_autotune(temp, e, c);
// Suppress a line mismatch error
gcode_LastN += 1;
FlushSerialRequestResend();
}
#ifdef SCARA