Fix serial bridge tee not wanted resolve

This commit is contained in:
Theo Arends 2022-11-12 15:03:42 +01:00
parent 50b0a983b2
commit b0dbe32f22

View File

@ -73,7 +73,8 @@ void SerialBridgePrintf(PGM_P formatP, ...) {
va_end(arg); va_end(arg);
if (data == nullptr) { return; } if (data == nullptr) { return; }
SerialBridgeSerial->printf(data); // SerialBridgeSerial->printf(data); // This resolves "MqttClientMask":"DVES_%06X" into "DVES_000002"
SerialBridgeSerial->print(data); // This does not resolve "DVES_%06X"
free(data); free(data);
} }
#endif // USE_SERIAL_BRIDGE_TEE #endif // USE_SERIAL_BRIDGE_TEE