浏览代码

Set MAX_OVERSHOOT_PID_AUTOTUNE to 30 (#15257)

Robby Candra 5 年前
父节点
当前提交
c3f09e2b1b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/module/temperature.cpp

+ 1
- 1
Marlin/src/module/temperature.cpp 查看文件

@@ -500,7 +500,7 @@ volatile bool Temperature::temp_meas_ready = false;
500 500
 
501 501
       // Did the temperature overshoot very far?
502 502
       #ifndef MAX_OVERSHOOT_PID_AUTOTUNE
503
-        #define MAX_OVERSHOOT_PID_AUTOTUNE 20
503
+        #define MAX_OVERSHOOT_PID_AUTOTUNE 30
504 504
       #endif
505 505
       if (current_temp > target + MAX_OVERSHOOT_PID_AUTOTUNE) {
506 506
         SERIAL_ECHOLNPGM(MSG_PID_TEMP_TOO_HIGH);

正在加载...
取消
保存