Nothing special

This commit is contained in:
Matthias Mitscherlich
2024-03-19 17:05:25 +01:00
parent 62c088256f
commit 4b26e6080f
4 changed files with 1175 additions and 905 deletions
+3 -4
View File
@@ -164,10 +164,9 @@ void logger::task()
if(logQueueItem.logType == LOGTYPE_PRINT)
{
// Raw print
#if defined(ENABLE_SERIAL_LOGGING)
port.write(NO_DEVICE_ADDRESS, NO_REGISTER_ADDRESS, (uint8_t*)logQueueItem.context.c_str(), logQueueItem.context.length());
#endif
#if defined(ENABLE_SERIAL_LOGGING)
port.write(NO_DEVICE_ADDRESS, NO_REGISTER_ADDRESS, (uint8_t*)logQueueItem.context.c_str(), logQueueItem.context.length());
#endif
}
else