| 204 | } |
| 205 | |
| 206 | void Error(const char* __restrict fmt, ...){ |
| 207 | unlockSerial(); |
| 208 | Write("\r\n[ERROR] ", 255, 0, 0); |
| 209 | va_list args; |
| 210 | va_start(args, fmt); |
| 211 | WriteF(fmt, args); |
| 212 | va_end(args); |
| 213 | } |
| 214 | |
| 215 | void Info(const char* __restrict fmt, ...){ |
| 216 | //acquireLock(&logLock); |
no test coverage detected