mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-22 23:56:13 +01:00
10 lines
170 B
C
10 lines
170 B
C
#ifndef DIAG_h
|
|
#define DIAG_h
|
|
|
|
#include "StringParser.h"
|
|
#ifndef DIAG_ENABLED
|
|
#define DIAG_ENABLED true
|
|
#endif
|
|
#define DIAG if (DIAG_ENABLED) StringParser::print
|
|
#endif
|