Browse Source

Undubble MSG_MIN &MSG MAX

AnHardt 9 years ago
parent
commit
3024f6c706
2 changed files with 4 additions and 4 deletions
  1. 2
    2
      Marlin/language.h
  2. 2
    2
      Marlin/temperature.cpp

+ 2
- 2
Marlin/language.h View File

@@ -169,8 +169,8 @@
169 169
 #define MSG_PID_TIMEOUT                     MSG_PID_AUTOTUNE_FAILED " timeout"
170 170
 #define MSG_BIAS                            " bias: "
171 171
 #define MSG_D                               " d: "
172
-#define MSG_MIN                             " min: "
173
-#define MSG_MAX                             " max: "
172
+#define MSG_T_MIN                           " min: "
173
+#define MSG_T_MAX                           " max: "
174 174
 #define MSG_KU                              " Ku: "
175 175
 #define MSG_TU                              " Tu: "
176 176
 #define MSG_CLASSIC_PID                     " Classic PID "

+ 2
- 2
Marlin/temperature.cpp View File

@@ -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);

Loading…
Cancel
Save