mirror of https://github.com/arendst/Tasmota.git
Remove flush() call after read of KNX packets
The flush() call after read() causes empty packets being sent as response for all UDP packets received on that port.
This commit is contained in:
parent
53991beb4b
commit
05c45f7ad7
|
@ -536,7 +536,6 @@ void ESPKNXIP::__loop_knx()
|
|||
|
||||
uint8_t buf[read];
|
||||
udp.read(buf, read);
|
||||
udp.flush();
|
||||
|
||||
DEBUG_PRINT(F("Got packet:"));
|
||||
|
||||
|
|
Loading…
Reference in New Issue