Merge pull request #2136 from thinkyhead/M303_suppress_error
Suppress the line mismatch error after M303
This commit is contained in:
commit
70d2f48d4e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user