2021-04-14 22:46:29 +02:00
|
|
|
/*
|
|
|
|
* (c) 2020 Chris Harlow. All rights reserved.
|
|
|
|
* (c) 2021 Fred Decker. All rights reserved.
|
|
|
|
* (c) 2020 Harald Barth. All rights reserved.
|
|
|
|
*
|
|
|
|
* This file is part of CommandStation-EX
|
|
|
|
*
|
|
|
|
* This is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* It is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with CommandStation. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-09-26 09:49:51 +02:00
|
|
|
// This include is intended to visually simplify the .ino for the end users.
|
|
|
|
// If there were any #ifdefs required they are much better handled in here.
|
|
|
|
|
|
|
|
#ifndef DCCEX_h
|
|
|
|
#define DCCEX_h
|
|
|
|
|
|
|
|
#include "defines.h"
|
|
|
|
#include "DCC.h"
|
|
|
|
#include "DIAG.h"
|
|
|
|
#include "DCCEXParser.h"
|
|
|
|
#include "version.h"
|
|
|
|
#include "WifiInterface.h"
|
2020-11-29 10:48:39 +01:00
|
|
|
#if ETHERNET_ON == true
|
2020-09-26 13:01:00 +02:00
|
|
|
#include "EthernetInterface.h"
|
2020-11-29 10:48:39 +01:00
|
|
|
#endif
|
2020-10-12 20:32:47 +02:00
|
|
|
#include "LCD_Implementation.h"
|
2021-03-23 15:37:05 +01:00
|
|
|
#include "LCN.h"
|
2020-10-12 20:32:47 +02:00
|
|
|
#include "freeMemory.h"
|
2020-09-26 09:49:51 +02:00
|
|
|
|
2021-01-05 19:05:17 +01:00
|
|
|
#if __has_include ( "myAutomation.h")
|
|
|
|
#include "RMFT.h"
|
|
|
|
#define RMFT_ACTIVE
|
|
|
|
#endif
|
|
|
|
|
2020-09-26 09:49:51 +02:00
|
|
|
#endif
|