mirror of
				https://github.com/thelsing/knx.git
				synced 2025-10-26 10:26:25 +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); | ||||
|     } | ||||
| 
 | ||||
|     // 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
 | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user