Browse Source

Cleanup in language.h

Scott Lahteine 5 years ago
parent
commit
6b3ed0f320
1 changed files with 5 additions and 7 deletions
  1. 5
    7
      Marlin/src/core/language.h

+ 5
- 7
Marlin/src/core/language.h View File

@@ -220,12 +220,10 @@
220 220
 #define STR_KILL_BUTTON                     "!! KILL caused by KILL button/pin"
221 221
 
222 222
 // temperature.cpp strings
223
-#define STR_PID_AUTOTUNE_PREFIX             "PID Autotune"
224
-#define STR_PID_AUTOTUNE_START              STR_PID_AUTOTUNE_PREFIX " start"
225
-#define STR_PID_AUTOTUNE_FAILED             STR_PID_AUTOTUNE_PREFIX " failed!"
226
-#define STR_PID_BAD_EXTRUDER_NUM            STR_PID_AUTOTUNE_FAILED " Bad extruder number"
227
-#define STR_PID_TEMP_TOO_HIGH               STR_PID_AUTOTUNE_FAILED " Temperature too high"
228
-#define STR_PID_TIMEOUT                     STR_PID_AUTOTUNE_FAILED " timeout"
223
+#define STR_PID_AUTOTUNE_START              "PID Autotune start"
224
+#define STR_PID_BAD_EXTRUDER_NUM            "PID Autotune failed! Bad extruder number"
225
+#define STR_PID_TEMP_TOO_HIGH               "PID Autotune failed! Temperature too high"
226
+#define STR_PID_TIMEOUT                     "PID Autotune failed! timeout"
229 227
 #define STR_BIAS                            " bias: "
230 228
 #define STR_D_COLON                         " d: "
231 229
 #define STR_T_MIN                           " min: "
@@ -236,7 +234,7 @@
236 234
 #define STR_KP                              " Kp: "
237 235
 #define STR_KI                              " Ki: "
238 236
 #define STR_KD                              " Kd: "
239
-#define STR_PID_AUTOTUNE_FINISHED           STR_PID_AUTOTUNE_PREFIX " finished! Put the last Kp, Ki and Kd constants from below into Configuration.h"
237
+#define STR_PID_AUTOTUNE_FINISHED           "PID Autotune finished! Put the last Kp, Ki and Kd constants from below into Configuration.h"
240 238
 #define STR_PID_DEBUG                       " PID_DEBUG "
241 239
 #define STR_PID_DEBUG_INPUT                 ": Input "
242 240
 #define STR_PID_DEBUG_OUTPUT                " Output "

Loading…
Cancel
Save