Move more strings to PROGMEM
This commit is contained in:
@ -1502,7 +1502,7 @@ void MarlinSettings::postprocess() {
|
||||
HAL::PersistentStore::access_finish();
|
||||
|
||||
if (status)
|
||||
SERIAL_PROTOCOL("?Unable to save mesh data.\n");
|
||||
SERIAL_PROTOCOLPGM("?Unable to save mesh data.\n");
|
||||
|
||||
// Write crc to MAT along with other data, or just tack on to the beginning or end
|
||||
|
||||
@ -1540,7 +1540,7 @@ void MarlinSettings::postprocess() {
|
||||
HAL::PersistentStore::access_finish();
|
||||
|
||||
if (status)
|
||||
SERIAL_PROTOCOL("?Unable to load mesh data.\n");
|
||||
SERIAL_PROTOCOLPGM("?Unable to load mesh data.\n");
|
||||
|
||||
#if ENABLED(EEPROM_CHITCHAT)
|
||||
else
|
||||
|
@ -266,11 +266,11 @@ uint8_t Temperature::soft_pwm_amount[HOTENDS],
|
||||
#endif
|
||||
|
||||
if (!WITHIN(hotend, _BOT_HOTEND, _TOP_HOTEND)) {
|
||||
SERIAL_ECHOLN(MSG_PID_BAD_EXTRUDER_NUM);
|
||||
SERIAL_ECHOLNPGM(MSG_PID_BAD_EXTRUDER_NUM);
|
||||
return;
|
||||
}
|
||||
|
||||
SERIAL_ECHOLN(MSG_PID_AUTOTUNE_START);
|
||||
SERIAL_ECHOLNPGM(MSG_PID_AUTOTUNE_START);
|
||||
|
||||
disable_all_heaters(); // switch off all heaters.
|
||||
|
||||
|
@ -123,7 +123,7 @@ inline void invalid_extruder_error(const uint8_t e) {
|
||||
SERIAL_CHAR('T');
|
||||
SERIAL_ECHO_F(e, DEC);
|
||||
SERIAL_CHAR(' ');
|
||||
SERIAL_ECHOLN(MSG_INVALID_EXTRUDER);
|
||||
SERIAL_ECHOLNPGM(MSG_INVALID_EXTRUDER);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user