implement knx-ip searchresponse

This commit is contained in:
Thomas Kunze
2019-12-28 00:29:17 +01:00
parent 02a24ea3b8
commit e2fd20ab9a
37 changed files with 447 additions and 188 deletions

View File

@@ -96,22 +96,4 @@ IpParameterObject::IpParameterObject(DeviceObject& deviceObject, Platform& platf
initializeProperties(sizeof(properties), properties);
}
uint32_t IpParameterObject::multicastAddress() const
{
const Property* prop = property(PID_ROUTING_MULTICAST_ADDRESS);
uint32_t value = DEFAULT_MULTICAST_ADDR;
prop->read(value);
return value;
}
uint8_t IpParameterObject::ttl() const
{
const Property* prop = property(PID_TTL);
uint8_t value = 0;
prop->read(value);
return value;
}
#endif