mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
d7b2cf3d76
* LCN * Prevent deprecated compiler warning * Implement huge function numbers * new commands <! [cab]> forget locos. <9> ESTOP ALL. <D RESET> reboot arduino * Waveform accuracy msg * Drop post-write verify * UNUSED_PIN current measure and callback -2 for cv actions. * Correct diags * ESTOP a forget loco * ESTOP loco on forget * Avoid compiler warning * current sensor offset * Restore <1 JOIN> after prog track operation * <!> ESTOP <-> FORGET * Auto current offset detection * manage current offset and diagnostics * neater msg at startup * Add startup message to LCN master * DCC::setJoinRelayPin Co-authored-by: Asbelos <asbelos@btinternet.com>
26 lines
553 B
C
26 lines
553 B
C
// 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"
|
|
#if ETHERNET_ON == true
|
|
#include "EthernetInterface.h"
|
|
#endif
|
|
#include "LCD_Implementation.h"
|
|
#include "LCN.h"
|
|
#include "freeMemory.h"
|
|
|
|
#if __has_include ( "myAutomation.h")
|
|
#include "RMFT.h"
|
|
#define RMFT_ACTIVE
|
|
#endif
|
|
|
|
#endif
|