AllWize Library
debug.h
Go to the documentation of this file.
1 /*
2 
3 DEBUG MODULE
4 
5 */
6 
7 #pragma once
8 
9 #ifdef DEBUG_PORT
10 #define DEBUG_MSG(...) DEBUG_PORT.printf( __VA_ARGS__ )
11 #else
12 #define DEBUG_MSG(...)
13 #endif
14 
15 void debugSetup();
void debugSetup()
Definition: debug.cpp:11