| 26 | bool debugAnsiCodes = true; |
| 27 | |
| 28 | inline void debugSendAnsiCode(const __FlashStringHelper* code, Print* _logOutput) |
| 29 | { |
| 30 | #ifdef ARDUINO |
| 31 | if(debugAnsiCodes) _logOutput->print(code); |
| 32 | #else |
| 33 | if(debugAnsiCodes) debug_print(_logOutput, code); |
| 34 | #endif |
| 35 | } |
| 36 | |
| 37 | /* |
| 38 | void debug_timestamp() |
no test coverage detected