mirror of
https://github.com/thelsing/knx.git
synced 2025-09-14 17:50:55 +02:00
33 lines
785 B
C++
33 lines
785 B
C++
#pragma once
|
|
|
|
#include "config.h"
|
|
#if MASK_VERSION == 0x57B0
|
|
|
|
#include "bau_systemB_device.h"
|
|
#include "ip_parameter_object.h"
|
|
#include "ip_data_link_layer.h"
|
|
#include "cemi_server_object.h"
|
|
|
|
class Bau57B0 : public BauSystemBDevice
|
|
{
|
|
public:
|
|
Bau57B0(Platform& platform);
|
|
void loop() override;
|
|
bool enabled() override;
|
|
void enabled(bool value) override;
|
|
|
|
protected:
|
|
InterfaceObject* getInterfaceObject(uint8_t idx);
|
|
InterfaceObject* getInterfaceObject(ObjectType objectType, uint8_t objectInstance);
|
|
|
|
void doMasterReset(EraseCode eraseCode, uint8_t channel) override;
|
|
private:
|
|
IpParameterObject _ipParameters;
|
|
IpDataLinkLayer _dlLayer;
|
|
#ifdef USE_CEMI_SERVER
|
|
CemiServer _cemiServer;
|
|
CemiServerObject _cemiServerObject;
|
|
#endif
|
|
};
|
|
#endif
|