Extended reporting options (#16741)
This commit is contained in:
@ -893,7 +893,7 @@ namespace ExtUI {
|
||||
bool isMachineHomed() { return all_axes_homed(); }
|
||||
|
||||
PGM_P getFirmwareName_str() {
|
||||
static const char firmware_name[] PROGMEM = "Marlin " SHORT_BUILD_VERSION;
|
||||
static PGMSTR(firmware_name, "Marlin " SHORT_BUILD_VERSION);
|
||||
return firmware_name;
|
||||
}
|
||||
|
||||
|
@ -1347,13 +1347,13 @@ void MarlinUI::update() {
|
||||
PGM_P printing = GET_TEXT(MSG_PRINTING);
|
||||
PGM_P welcome = GET_TEXT(WELCOME_MSG);
|
||||
#if SERVICE_INTERVAL_1 > 0
|
||||
static const char service1[] PROGMEM = { "> " SERVICE_NAME_1 "!" };
|
||||
static PGMSTR(service1, "> " SERVICE_NAME_1 "!");
|
||||
#endif
|
||||
#if SERVICE_INTERVAL_2 > 0
|
||||
static const char service2[] PROGMEM = { "> " SERVICE_NAME_2 "!" };
|
||||
static PGMSTR(service2, "> " SERVICE_NAME_2 "!");
|
||||
#endif
|
||||
#if SERVICE_INTERVAL_3 > 0
|
||||
static const char service3[] PROGMEM = { "> " SERVICE_NAME_3 "!" };
|
||||
static PGMSTR(service3, "> " SERVICE_NAME_3 "!");
|
||||
#endif
|
||||
PGM_P msg;
|
||||
if (printingIsPaused())
|
||||
|
Reference in New Issue
Block a user