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.
|
#pragma once
|
|
|
|
// -----------------------------------------------------------------------------
|
|
// Debug
|
|
// -----------------------------------------------------------------------------
|
|
|
|
#define DEBUG_SUPPORT DEBUG_SERIAL_SUPPORT || DEBUG_UDP_SUPPORT || DEBUG_TELNET_SUPPORT || DEBUG_WEB_SUPPORT
|
|
|
|
#if DEBUG_SUPPORT
|
|
#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
|