Add ExtUI::onStatusChanged_P (#17543)

This commit is contained in:
Desuuuu 2020-04-16 07:33:31 +02:00 committed by GitHub
parent 089a0af119
commit 2824e67d95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 1 deletions

View File

@ -536,7 +536,7 @@ void wait_for_confirmation(const bool is_reload/*=false*/, const int8_t max_beep
host_prompt_do(PROMPT_INFO, GET_TEXT(MSG_REHEATING));
#endif
#if ENABLED(EXTENSIBLE_UI)
ExtUI::onStatusChanged(GET_TEXT(MSG_REHEATING));
ExtUI::onStatusChanged_P(GET_TEXT(MSG_REHEATING));
#endif
// Re-enable the heaters if they timed out

View File

@ -1071,6 +1071,12 @@ namespace ExtUI {
onUserConfirmRequired(msg);
}
void onStatusChanged_P(PGM_P const pstr) {
char msg[strlen_P(pstr) + 1];
strcpy_P(msg, pstr);
onStatusChanged(msg);
}
FileList::FileList() { refresh(); }
void FileList::refresh() { num_files = 0xFFFF; }

View File

@ -339,6 +339,7 @@ namespace ExtUI {
void onUserConfirmRequired(const char * const msg);
void onUserConfirmRequired_P(PGM_P const pstr);
void onStatusChanged(const char * const msg);
void onStatusChanged_P(PGM_P const pstr);
void onFactoryReset();
void onStoreSettings(char *);
void onLoadSettings(const char *);