mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
DISABLE_DIAG by default for Uno and Nano
This commit is contained in:
parent
182479c07b
commit
263c3d01e3
|
@ -211,6 +211,19 @@ The configuration file for DCC-EX Command Station
|
||||||
// #define DISABLE_VDPY
|
// #define DISABLE_VDPY
|
||||||
// #define ENABLE_VDPY
|
// #define ENABLE_VDPY
|
||||||
|
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
// DISABLE / ENABLE DIAG
|
||||||
|
//
|
||||||
|
// To diagose different errors, you can turn on differnet messages. This costs
|
||||||
|
// program memory which we do not have enough on the Uno and Nano, so it is
|
||||||
|
// by default DISABLED on those. If you think you can fit it (for example
|
||||||
|
// having disabled some of the features above) you can enable it with
|
||||||
|
// ENABLE_DIAG. You can even disable it on all other CPUs with
|
||||||
|
// DISABLE_DIAG
|
||||||
|
//
|
||||||
|
// #define DISABLE_DIAG
|
||||||
|
// #define ENABLE_DIAG
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////
|
||||||
// REDEFINE WHERE SHORT/LONG ADDR break is. According to NMRA the last short address
|
// REDEFINE WHERE SHORT/LONG ADDR break is. According to NMRA the last short address
|
||||||
// is 127 and the first long address is 128. There are manufacturers which have
|
// is 127 and the first long address is 128. There are manufacturers which have
|
||||||
|
|
|
@ -220,9 +220,15 @@
|
||||||
//
|
//
|
||||||
#if defined(ARDUINO_AVR_NANO) || defined(ARDUINO_AVR_UNO)
|
#if defined(ARDUINO_AVR_NANO) || defined(ARDUINO_AVR_UNO)
|
||||||
#define IO_NO_HAL // HAL too big whatever you disable otherwise
|
#define IO_NO_HAL // HAL too big whatever you disable otherwise
|
||||||
|
|
||||||
#ifndef ENABLE_VDPY
|
#ifndef ENABLE_VDPY
|
||||||
#define DISABLE_VDPY
|
#define DISABLE_VDPY
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef ENABLE_DIAG
|
||||||
|
#define DISABLE_DIAG
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if __has_include ( "myAutomation.h")
|
#if __has_include ( "myAutomation.h")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user