mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
Add warning message in TP-UART data link layer (#104)
* Fix address type bug in TP-UART data link layer * Fix address check * Fix blank
This commit is contained in:
parent
390ca8ccfb
commit
abb37c3b63
@ -142,6 +142,11 @@ bool Bau07B0::isAckRequired(uint16_t address, bool isGrpAddr)
|
|||||||
if (address == _deviceObj.individualAddress())
|
if (address == _deviceObj.individualAddress())
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
|
if (address == 0)
|
||||||
|
{
|
||||||
|
println("Invalid broadcast detected: destination address is 0, but address type is \"individual\"");
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user