From 254d83b6fc6e1e6cec06842331eb18d9b1c144e7 Mon Sep 17 00:00:00 2001 From: Asbelos Date: Thu, 9 Sep 2021 10:12:27 +0100 Subject: [PATCH] Remove SERIAL warning --- RMFTMacros.h | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/RMFTMacros.h b/RMFTMacros.h index fc5140f..c66dc3c 100644 --- a/RMFTMacros.h +++ b/RMFTMacros.h @@ -19,8 +19,9 @@ #ifndef RMFTMacros_H #define RMFTMacros_H -// remove normal code LCD macro (will be restored later) +// remove normal code LCD & SERIAL macros (will be restored later) #undef LCD +#undef SERIAL // This file will include and build the EXRAIL script and associated helper tricks. @@ -299,8 +300,9 @@ const int StringMacroTracker1=__COUNTER__; const int StringMacroTracker2=__COUNTER__; #include "myAutomation.h" -// Restore normal code LCD macro +// Restore normal code LCD & SERIAL macro #undef LCD #define LCD StringFormatter::lcd - +#undef SERIAL +#define SERIAL 0x0 #endif