Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#define DEBUG_MESSAGE_MAX_LENGTH 80
|
|
|
|
#if defined(SONOFF_DUAL) | defined(SONOFF_RFBRIDGE)
|
|
#undef DEBUG_PORT
|
|
#endif
|
|
|
|
#if defined(DEBUG_PORT) | defined(DEBUG_UDP_IP)
|
|
#define DEBUG_MSG(...) debugSend(__VA_ARGS__)
|
|
#define DEBUG_MSG_P(...) debugSend_P(__VA_ARGS__)
|
|
#endif
|
|
|
|
#ifndef DEBUG_MSG
|
|
#define DEBUG_MSG(...)
|
|
#define DEBUG_MSG_P(...)
|
|
#endif
|