2018-06-05 00:32:26 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-06-13 00:51:12 +02:00
|
|
|
#include "bau_systemB.h"
|
2018-06-05 00:32:26 +02:00
|
|
|
#include "tpuart_data_link_layer.h"
|
|
|
|
|
2018-06-13 00:51:12 +02:00
|
|
|
class Bau07B0: public BauSystemB
|
2018-06-05 00:32:26 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Bau07B0(Platform& platform);
|
|
|
|
protected:
|
|
|
|
InterfaceObject* getInterfaceObject(uint8_t idx);
|
2018-06-13 00:51:12 +02:00
|
|
|
uint8_t* descriptor();
|
|
|
|
DataLinkLayer& dataLinkLayer();
|
2018-06-05 00:32:26 +02:00
|
|
|
private:
|
|
|
|
TpUartDataLinkLayer _dlLayer;
|
2018-06-13 00:51:12 +02:00
|
|
|
uint8_t _descriptor[2];
|
2018-06-05 00:32:26 +02:00
|
|
|
};
|