1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00
CommandStation-EX/DIAG.h

10 lines
176 B
C
Raw Normal View History

2020-05-27 10:40:12 +02:00
#ifndef DIAG_h
#define DIAG_h
#include "StringFormatter.h"
2020-05-24 00:02:54 +02:00
#ifndef DIAG_ENABLED
#define DIAG_ENABLED true
#endif
#define DIAG if (DIAG_ENABLED) StringFormatter::print
2020-05-27 10:40:12 +02:00
#endif