Function for CONFIG_ECHO_HEADING

This commit is contained in:
Scott Lahteine 2020-02-20 20:09:59 -06:00
parent a1f026f57a
commit b8b225c8b5
1 changed files with 10 additions and 1 deletions

View File

@ -2766,9 +2766,18 @@ void MarlinSettings::reset() {
#if DISABLED(DISABLE_M503)
static void config_heading(const bool repl, PGM_P const pstr, const bool eol=true) {
if (!repl) {
CONFIG_ECHO_START();
SERIAL_ECHOPGM("; ");
serialprintPGM(pstr);
if (eol) SERIAL_EOL();
}
}
#define CONFIG_ECHO_START() do{ if (!forReplay) SERIAL_ECHO_START(); }while(0)
#define CONFIG_ECHO_MSG(STR) do{ CONFIG_ECHO_START(); SERIAL_ECHOLNPGM(STR); }while(0)
#define CONFIG_ECHO_HEADING(STR) do{ if (!forReplay) { CONFIG_ECHO_START(); SERIAL_ECHOLNPGM(STR); } }while(0)
#define CONFIG_ECHO_HEADING(STR, V...) config_heading(forReplay, PSTR(STR), V)
#if HAS_TRINAMIC
inline void say_M906(const bool forReplay) { CONFIG_ECHO_START(); SERIAL_ECHOPGM(" M906"); }