Browse Source

Use MAX_BED_POWER instead of BANG_MAX to heat outside PID_FUNCTIONAL_RANGE (#15431)

LinFor 4 years ago
parent
commit
98f614ddb1
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

@@ -943,7 +943,7 @@ void Temperature::min_temp_error(const heater_ind_t heater) {
943 943
         pid_reset = true;
944 944
       }
945 945
       else if (pid_error > PID_FUNCTIONAL_RANGE) {
946
-        pid_output = BANG_MAX;
946
+        pid_output = MAX_BED_POWER;
947 947
         pid_reset = true;
948 948
       }
949 949
       else {

Loading…
Cancel
Save