Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataFrameSyncSendLayer.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_REMOTING_DATAFRAMESYNCSENDLAYER_H
4#define IMT_BASE_LIB_REMOTING_DATAFRAMESYNCSENDLAYER_H
5
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace remoting {
17
23// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
26
27public:
28
32 // AXIVION Next Line AutosarC++19_03-M5.0.12: required construct / Usage allowed, default frame end char definition
33 static constexpr uint8_t DEFAULT_FRAME_END_CHARACTER {static_cast<uint8_t>('~')};
34
40 explicit DataFrameSyncSendLayer(DataSenderIfc& lowerLevelSender, uint8_t const frameEndCharacter = DEFAULT_FRAME_END_CHARACTER);
41
45 // AXIVION Next Codeline AutosarC++19_03-A18.1.1: use C-style array for compatibility
46 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
47 bool sendData(uint8_t const pData[], uint32_t const countDataBytes) final;
48
53
57 void onTransmissionError() final;
58
59private:
60
61 // AXIVION Next Line AutosarC++19_03-M5.0.12: Usage allowed, default escape char definition
62 static constexpr uint8_t ESCAPE_CHARACTER {static_cast<uint8_t>('\\')};
63
64 uint8_t const m_frameEndCharacter;
65 DataSenderIfc& m_lowerLevelSender;
66 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
67 DataFrame m_sendDataFrame;
68};
69
70} // namespace remoting
71} // namespace lib
72} // namespace base
73} // namespace imt
74
75#endif // IMT_BASE_LIB_REMOTING_DATAFRAMESYNCSENDLAYER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
Representation of a package of data that gets transmitted e.g.
Definition DataFrame.h:19
This layer appends frame end chars to mark the the end of a data frame.
bool sendData(uint8_t const pData[], uint32_t const countDataBytes) final
static constexpr uint8_t DEFAULT_FRAME_END_CHARACTER
Default frame end character.
DataFrameSyncSendLayer(DataSenderIfc &lowerLevelSender, uint8_t const frameEndCharacter=DEFAULT_FRAME_END_CHARACTER)
Constructor.
Inteface for a sender that can be called to send byte data.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62