Browse Source

Set MAX_OVERSHOOT_PID_AUTOTUNE to 30 (#15257)

Robby Candra 5 years ago
parent
commit
c3f09e2b1b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/module/temperature.cpp

+ 1
- 1
Marlin/src/module/temperature.cpp View File

500
 
500
 
501
       // Did the temperature overshoot very far?
501
       // Did the temperature overshoot very far?
502
       #ifndef MAX_OVERSHOOT_PID_AUTOTUNE
502
       #ifndef MAX_OVERSHOOT_PID_AUTOTUNE
503
-        #define MAX_OVERSHOOT_PID_AUTOTUNE 20
503
+        #define MAX_OVERSHOOT_PID_AUTOTUNE 30
504
       #endif
504
       #endif
505
       if (current_temp > target + MAX_OVERSHOOT_PID_AUTOTUNE) {
505
       if (current_temp > target + MAX_OVERSHOOT_PID_AUTOTUNE) {
506
         SERIAL_ECHOLNPGM(MSG_PID_TEMP_TOO_HIGH);
506
         SERIAL_ECHOLNPGM(MSG_PID_TEMP_TOO_HIGH);

Loading…
Cancel
Save