Use a STR_ prefix for non-translated strings
This commit is contained in:
@@ -31,7 +31,7 @@ void GcodeSuite::M105() {
|
||||
const int8_t target_extruder = get_target_extruder_from_command();
|
||||
if (target_extruder < 0) return;
|
||||
|
||||
SERIAL_ECHOPGM(MSG_OK);
|
||||
SERIAL_ECHOPGM(STR_OK);
|
||||
|
||||
#if HAS_TEMP_SENSOR
|
||||
|
||||
|
||||
@@ -52,7 +52,7 @@ void GcodeSuite::M303() {
|
||||
#endif
|
||||
const heater_ind_t e = (heater_ind_t)parser.intval('E');
|
||||
if (!WITHIN(e, SI, EI)) {
|
||||
SERIAL_ECHOLNPGM(MSG_PID_BAD_EXTRUDER_NUM);
|
||||
SERIAL_ECHOLNPGM(STR_PID_BAD_EXTRUDER_NUM);
|
||||
#if ENABLED(EXTENSIBLE_UI)
|
||||
ExtUI::OnPidTuning(ExtUI::result_t::PID_BAD_EXTRUDER_NUM);
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user