From ff6eecf138e3d7860ebe8e177ea015d42bc4d5db Mon Sep 17 00:00:00 2001 From: Asbelos Date: Mon, 7 Aug 2023 22:31:11 +0100 Subject: [PATCH] LCC serial --- EXRAIL2.cpp | 2 +- EXRAIL2.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/EXRAIL2.cpp b/EXRAIL2.cpp index 9550b83..ff6033e 100644 --- a/EXRAIL2.cpp +++ b/EXRAIL2.cpp @@ -84,7 +84,7 @@ RMFT2 * RMFT2::pausingTask=NULL; // Task causing a PAUSE. // when pausingTask is set, that is the ONLY task that gets any service, // and all others will have their locos stopped, then resumed after the pausing task resumes. byte RMFT2::flags[MAX_FLAGS]; - +Print * RMFT2::LCCSerial=0; LookList * RMFT2::sequenceLookup=NULL; LookList * RMFT2::onThrowLookup=NULL; LookList * RMFT2::onCloseLookup=NULL; diff --git a/EXRAIL2.h b/EXRAIL2.h index be068ae..c99d5dc 100644 --- a/EXRAIL2.h +++ b/EXRAIL2.h @@ -179,6 +179,7 @@ private: static const HIGHFLASH byte RouteCode[]; static const HIGHFLASH int16_t SignalDefinitions[]; static byte flags[MAX_FLAGS]; + static Print * LCCSerial; static LookList * sequenceLookup; static LookList * onThrowLookup; static LookList * onCloseLookup;