|
@@ -296,8 +296,8 @@ void PID_autotune(float temp, int extruder, int ncycles)
|
296
|
296
|
|
297
|
297
|
SERIAL_PROTOCOLPGM(MSG_BIAS); SERIAL_PROTOCOL(bias);
|
298
|
298
|
SERIAL_PROTOCOLPGM(MSG_D); SERIAL_PROTOCOL(d);
|
299
|
|
- SERIAL_PROTOCOLPGM(MSG_MIN); SERIAL_PROTOCOL(min);
|
300
|
|
- SERIAL_PROTOCOLPGM(MSG_MAX); SERIAL_PROTOCOLLN(max);
|
|
299
|
+ SERIAL_PROTOCOLPGM(MSG_T_MIN); SERIAL_PROTOCOL(min);
|
|
300
|
+ SERIAL_PROTOCOLPGM(MSG_T_MAX); SERIAL_PROTOCOLLN(max);
|
301
|
301
|
if (cycles > 2) {
|
302
|
302
|
Ku = (4.0 * d) / (3.14159265 * (max - min) / 2.0);
|
303
|
303
|
Tu = ((float)(t_low + t_high) / 1000.0);
|