mirror of
https://github.com/thelsing/knx.git
synced 2025-01-21 00:05:43 +01:00
also ack indivisual broadcasts
This commit is contained in:
parent
bb818d9877
commit
45158bb071
@ -138,8 +138,8 @@ bool Bau07B0::isAckRequired(uint16_t address, bool isGrpAddr)
|
|||||||
return _addrTable.contains(address);
|
return _addrTable.contains(address);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Also ACK for our own individual address
|
// Also ACK for our own individual address or broadcast
|
||||||
if (address == _deviceObj.individualAddress())
|
if (individualAddress == _deviceObj.individualAddress() || individualAddress == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
return false;
|
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
|
// 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)
|
// too. A typical use case is the protection of a Subnetwork that is located outside a building)
|
||||||
|
|
||||||
// Also ACK for our own individual address
|
// Also ACK for our own individual address or broadcast
|
||||||
if (individualAddress == _deviceObj.individualAddress())
|
if (individualAddress == _deviceObj.individualAddress() || individualAddress == 0)
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// use 2 for now
|
// use 2 for now
|
||||||
|
Loading…
Reference in New Issue
Block a user