mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-24 19:26:37 +00:00
Fix serial bridge tee not wanted resolve
This commit is contained in:
parent
50b0a983b2
commit
b0dbe32f22
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user