diff --git a/Firmware/cardreader.cpp b/Firmware/cardreader.cpp index f58aa3d5..0aef09c8 100644 --- a/Firmware/cardreader.cpp +++ b/Firmware/cardreader.cpp @@ -859,7 +859,7 @@ void CardReader::presort() { #endif uint16_t counter = 0; - menu_progressbar_init(fileCnt * fileCnt / 2, _i("Sorting files")); + menu_progressbar_init(fileCnt * fileCnt / 2, _i("Sorting files")); ////MSG_SORTING_FILES c=18 for (uint16_t i = 1; i < fileCnt; ++i){ // if (!IS_SD_INSERTED) return; diff --git a/Firmware/messages.cpp b/Firmware/messages.cpp index b885e465..a111651a 100644 --- a/Firmware/messages.cpp +++ b/Firmware/messages.cpp @@ -158,9 +158,9 @@ const char MSG_IR_04_OR_NEWER[] PROGMEM_I1 = ISTR(" 0.4 or newer");////MSG_IR_04 const char MSG_IR_03_OR_OLDER[] PROGMEM_I1 = ISTR(" 0.3 or older");////MSG_IR_03_OR_OLDER c=18 const char MSG_IR_UNKNOWN[] PROGMEM_I1 = ISTR("unknown state");////MSG_IR_UNKNOWN c=18 #endif -extern const char MSG_PAUSED_THERMAL_ERROR[] PROGMEM_I1 = ISTR("PAUSED THERMAL ERROR");////c=20 +extern const char MSG_PAUSED_THERMAL_ERROR[] PROGMEM_I1 = ISTR("PAUSED THERMAL ERROR");////MSG_THERMAL_ERROR_PAUSED c=20 #ifdef TEMP_MODEL -extern const char MSG_THERMAL_ANOMALY[] PROGMEM_I1 = ISTR("THERMAL ANOMALY");////c=20 +extern const char MSG_THERMAL_ANOMALY[] PROGMEM_I1 = ISTR("THERMAL ANOMALY");////MSG_THERMAL_ANOMALY c=20 #endif //not internationalized messages diff --git a/Firmware/temperature.cpp b/Firmware/temperature.cpp index ecac22b2..ab4d5d3e 100755 --- a/Firmware/temperature.cpp +++ b/Firmware/temperature.cpp @@ -2881,7 +2881,7 @@ void temp_model_autotune(int16_t temp, bool selftest) // lockout the printer during calibration KEEPALIVE_STATE(IN_PROCESS); menu_set_block(MENU_BLOCK_TEMP_MODEL_AUTOTUNE); - lcd_setstatuspgm(_i("Temp. model autotune")); + lcd_setstatuspgm(_i("Temp. model autotune")); ////MSG_TEMP_MODEL_AUTOTUNE c=20 lcd_return_to_status(); // set the model checking state during self-calibration @@ -2896,7 +2896,7 @@ void temp_model_autotune(int16_t temp, bool selftest) if(err) { SERIAL_ECHOLNPGM("TM: autotune failed"); - lcd_setstatuspgm(_i("TM autotune failed")); + lcd_setstatuspgm(_i("TM autotune failed")); ////MSG_TM_AUTOTUNE_FAILED c=20 if(temp_error_state.v) temp_model_cal::set_fan_speed(255); } else {