mirror of
https://github.com/thelsing/knx.git
synced 2026-03-31 03:17:43 +02:00
also ack indivisual broadcasts
This commit is contained in:
@@ -138,8 +138,8 @@ bool Bau07B0::isAckRequired(uint16_t address, bool isGrpAddr)
|
||||
return _addrTable.contains(address);
|
||||
}
|
||||
|
||||
// Also ACK for our own individual address
|
||||
if (address == _deviceObj.individualAddress())
|
||||
// Also ACK for our own individual address or broadcast
|
||||
if (individualAddress == _deviceObj.individualAddress() || individualAddress == 0)
|
||||
return true;
|
||||
|
||||
return false;
|
||||
|
||||
@@ -98,8 +98,8 @@ bool NetworkLayerCoupler::isRoutedIndividualAddress(uint16_t individualAddress)
|
||||
// This shall serve for protection purposes. (It is useful to prevent all parameterisation in one Subnetwork; the Coupler shall be protected
|
||||
// too. A typical use case is the protection of a Subnetwork that is located outside a building)
|
||||
|
||||
// Also ACK for our own individual address
|
||||
if (individualAddress == _deviceObj.individualAddress())
|
||||
// Also ACK for our own individual address or broadcast
|
||||
if (individualAddress == _deviceObj.individualAddress() || individualAddress == 0)
|
||||
return true;
|
||||
|
||||
// use 2 for now
|
||||
|
||||
Reference in New Issue
Block a user