2018-04-09 22:30:23 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "device_object.h"
|
|
|
|
#include "address_table_object.h"
|
|
|
|
#include "knx_types.h"
|
|
|
|
#include "network_layer.h"
|
|
|
|
|
|
|
|
class DataLinkLayer
|
|
|
|
{
|
|
|
|
public:
|
2018-06-05 00:32:26 +02:00
|
|
|
DataLinkLayer(DeviceObject& devObj, AddressTableObject& addrTab, NetworkLayer& layer,
|
2018-04-09 22:30:23 +02:00
|
|
|
Platform& platform);
|
|
|
|
|
|
|
|
// from network layer
|
|
|
|
void dataRequest(AckType ack, AddressType addrType, uint16_t destinationAddr, FrameFormat format,
|
|
|
|
Priority priority, NPDU& npdu);
|
|
|
|
void systemBroadcastRequest(AckType ack, FrameFormat format, Priority priority, NPDU& npdu);
|
2018-06-05 00:32:26 +02:00
|
|
|
virtual void loop() = 0;
|
|
|
|
virtual void enabled(bool value) = 0;
|
|
|
|
virtual bool enabled() const = 0;
|
|
|
|
protected:
|
|
|
|
void frameRecieved(CemiFrame& frame);
|
|
|
|
bool sendTelegram(NPDU &npdu, AckType ack, uint16_t destinationAddr, AddressType addrType, FrameFormat format, Priority priority);
|
|
|
|
virtual bool sendFrame(CemiFrame& frame) = 0;
|
|
|
|
uint8_t* frameData(CemiFrame& frame);
|
2018-04-09 22:30:23 +02:00
|
|
|
DeviceObject& _deviceObject;
|
|
|
|
AddressTableObject& _groupAddressTable;
|
|
|
|
NetworkLayer& _networkLayer;
|
|
|
|
Platform& _platform;
|
|
|
|
};
|