瀏覽代碼

Name magic value 20 to MAX_OVERSHOOT_PID_AUTOTUNE

to make it better findable.
AnHardt 9 年之前
父節點
當前提交
97ca1b3f4d
共有 1 個檔案被更改,包括 2 行新增1 行删除
  1. 2
    1
      Marlin/temperature.cpp

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

@@ -312,7 +312,8 @@ void PID_autotune(float temp, int extruder, int ncycles)
312 312
         }
313 313
       } 
314 314
     }
315
-    if (input > temp + 20) {
315
+    #define MAX_OVERSHOOT_PID_AUTOTUNE 20
316
+    if (input > temp + MAX_OVERSHOOT_PID_AUTOTUNE) {
316 317
       SERIAL_PROTOCOLLNPGM(MSG_PID_TEMP_TOO_HIGH);
317 318
       return;
318 319
     }

Loading…
取消
儲存