mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
17 lines
353 B
C++
17 lines
353 B
C++
#pragma once
|
|
|
|
#include "bau_systemB.h"
|
|
#include "tpuart_data_link_layer.h"
|
|
|
|
class Bau07B0: public BauSystemB
|
|
{
|
|
public:
|
|
Bau07B0(Platform& platform);
|
|
protected:
|
|
InterfaceObject* getInterfaceObject(uint8_t idx);
|
|
uint8_t* descriptor();
|
|
DataLinkLayer& dataLinkLayer();
|
|
private:
|
|
TpUartDataLinkLayer _dlLayer;
|
|
uint8_t _descriptor[2];
|
|
}; |