Skip to content

Commit

Permalink
🩹 No GET_TEXT with DGUS_TFT
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead authored and Pragma8123 committed Oct 24, 2023
1 parent e732c82 commit 741b86d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Marlin/src/lcd/extui/anycubic_vyper/dgus_tft.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -293,9 +293,9 @@ namespace Anycubic {
DEBUG_ECHOLNPGM("printerKilled()\nerror: ", error, "\ncomponent: ", component);
#endif

if (strcmp_P(error, GET_TEXT(MSG_ERR_HEATING_FAILED)) == 0) {
if (strcmp_P(error, Language_en::MSG_ERR_HEATING_FAILED) == 0) {

if (strcmp_P(component, PSTR("Bed")) == 0) {
if (strcmp_P(component, Language_en::MSG_BED) == 0) {
changePageOfTFT(PAGE_CHS_ABNORMAL_BED_HEATER);
SERIAL_ECHOLNPGM("Check Bed heater");
}
Expand All @@ -305,9 +305,9 @@ namespace Anycubic {
}

}
else if (strcmp_P(error, GET_TEXT(MSG_ERR_MINTEMP)) == 0) {
else if (strcmp_P(error, Language_en::MSG_ERR_MINTEMP) == 0) {

if (strcmp_P(component, PSTR("Bed")) == 0) {
if (strcmp_P(component, Language_en::MSG_BED) == 0) {
changePageOfTFT(PAGE_CHS_ABNORMAL_BED_NTC);
SERIAL_ECHOLNPGM("Check Bed thermistor");
}
Expand All @@ -317,9 +317,9 @@ namespace Anycubic {
}

}
else if (strcmp_P(error, GET_TEXT(MSG_ERR_MAXTEMP)) == 0) {
else if (strcmp_P(error, Language_en::MSG_ERR_MAXTEMP) == 0) {

if (strcmp_P(component, PSTR("Bed")) == 0) {
if (strcmp_P(component, Language_en::MSG_BED) == 0) {
changePageOfTFT(PAGE_CHS_ABNORMAL_BED_NTC);
SERIAL_ECHOLNPGM("Check Bed thermistor");
}
Expand All @@ -329,9 +329,9 @@ namespace Anycubic {
}

}
else if (strcmp_P(error, GET_TEXT(MSG_ERR_THERMAL_RUNAWAY)) == 0) {
else if (strcmp_P(error, Language_en::MSG_ERR_THERMAL_RUNAWAY) == 0) {

if (strcmp_P(component, PSTR("Bed")) == 0) {
if (strcmp_P(component, Language_en::MSG_BED) == 0) {
changePageOfTFT(PAGE_CHS_ABNORMAL_BED_HEATER);
SERIAL_ECHOLNPGM("Check Bed thermal runaway");
}
Expand All @@ -341,7 +341,7 @@ namespace Anycubic {
}

}
else if (strcmp_P(error, GET_TEXT(MSG_KILL_HOMING_FAILED)) == 0) {
else if (strcmp_P(error, Language_en::MSG_KILL_HOMING_FAILED) == 0) {

if (strcmp_P(component, PSTR("X")) == 0) {
changePageOfTFT(PAGE_CHS_ABNORMAL_X_ENDSTOP);
Expand Down

0 comments on commit 741b86d

Please sign in to comment.