From 2616e4d4d99b6441d07ba066778cac8f4228c3bb Mon Sep 17 00:00:00 2001
From: Giuliano Zaro <3684609+GMagician@users.noreply.github.com>
Date: Mon, 25 Feb 2019 23:13:01 +0100
Subject: [PATCH] Remove duplicated 'chitchat' defines (#13258)

---
 Marlin/src/module/configuration_store.cpp | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/Marlin/src/module/configuration_store.cpp b/Marlin/src/module/configuration_store.cpp
index 91991585d4..1271f9bb16 100644
--- a/Marlin/src/module/configuration_store.cpp
+++ b/Marlin/src/module/configuration_store.cpp
@@ -387,11 +387,7 @@ void MarlinSettings::postprocess() {
   #define CHITCHAT_ECHO_START()         SERIAL_ECHO_START()
   #define CHITCHAT_ERROR_START()        SERIAL_ERROR_START()
   #define CHITCHAT_ERROR_MSG(STR)       SERIAL_ERROR_MSG(STR)
-  #define CHITCHAT_ECHO(VAL)            SERIAL_ECHO(VAL)
   #define CHITCHAT_ECHOPGM(STR)         SERIAL_ECHOPGM(STR)
-  #define CHITCHAT_ECHOLNPGM(STR)       SERIAL_ECHOLNPGM(STR)
-  #define CHITCHAT_ECHOPAIR(STR, VAL)   SERIAL_ECHOPAIR(STR, VAL)
-  #define CHITCHAT_ECHOLNPAIR(STR, VAL) SERIAL_ECHOLNPAIR(STR, VAL)
   #define CHITCHAT_EOL()                SERIAL_EOL()
 #else
   #define CHITCHAT_ECHO(V)              NOOP
@@ -401,11 +397,7 @@ void MarlinSettings::postprocess() {
   #define CHITCHAT_ECHO_START()         NOOP
   #define CHITCHAT_ERROR_START()        NOOP
   #define CHITCHAT_ERROR_MSG(STR)       NOOP
-  #define CHITCHAT_ECHO(VAL)            NOOP
   #define CHITCHAT_ECHOPGM(STR)         NOOP
-  #define CHITCHAT_ECHOLNPGM(STR)       NOOP
-  #define CHITCHAT_ECHOPAIR(STR, VAL)   NOOP
-  #define CHITCHAT_ECHOLNPAIR(STR, VAL) NOOP
   #define CHITCHAT_EOL()                NOOP
 #endif
 
-- 
GitLab