1 #ifndef FIRMATA_DEBUG_H
2 #define FIRMATA_DEBUG_H
5 #define DEBUG_BEGIN(baud) Serial.begin(baud); while(!Serial) {;}
6 #define DEBUG_PRINTLN(x) Serial.println (x); Serial.flush()
7 #define DEBUG_PRINT(x) Serial.print (x)
9 #define DEBUG_BEGIN(baud)
10 #define DEBUG_PRINTLN(x)
11 #define DEBUG_PRINT(x)
14 #endif /* FIRMATA_DEBUG_H */