2020-12-20 10:48:23 +00:00
|
|
|
/*
|
|
|
|
DebugUtils.h - Simple debugging utilities.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEBUGUTILS_H
|
|
|
|
#define DEBUGUTILS_H
|
|
|
|
|
2021-03-28 12:47:50 +00:00
|
|
|
#include "config.h"
|
|
|
|
|
2020-12-20 10:48:23 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#define DEBUG_PRINT(...) Serial.print(__VA_ARGS__); Serial.flush();
|
|
|
|
#define DEBUG_PRINTLN(...) Serial.println(__VA_ARGS__); Serial.flush();
|
|
|
|
#else
|
|
|
|
#define DEBUG_PRINT(...)
|
|
|
|
#define DEBUG_PRINTLN(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|