knx
ETS configurable knx-stack
ip_parameter_object.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "config.h"
4 #ifdef USE_IP
5 #include "interface_object.h"
6 #include "device_object.h"
7 #include "platform.h"
8 
9 #define KNXIP_MULTICAST_PORT 3671
10 
12 {
13  public:
14  IpParameterObject(DeviceObject& deviceObject, Platform& platform);
15  uint16_t* additionalIndivualAddresses(uint8_t& numAddresses);
16  private:
17  DeviceObject& _deviceObject;
18  Platform& _platform;
19 };
20 #endif
This class represents and interface object.
uint16_t * additionalIndivualAddresses(uint8_t &numAddresses)
IpParameterObject(DeviceObject &deviceObject, Platform &platform)