Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataFrameCRC16CheckSendLayer.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_DATAFRAMECRC16CHECKSENDLAYER_H
4#define IMT_BASE_LIB_REMOTING_DATAFRAMECRC16CHECKSENDLAYER_H
5
11
12namespace imt {
13namespace base {
14namespace lib {
15namespace remoting {
16
20// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
23
24public:
25
30 explicit DataFrameCRC16CheckSendLayer(DataSenderIfc& lowerLevelSender);
31
35 // AXIVION Next Codeline AutosarC++19_03-A18.1.1: use C-style array for compatibility
36 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
37 bool sendData(uint8_t const pData[], uint32_t const countDataBytes) final;
38
45 void setInitialCrcValue(uint16_t const initialCrcValue);
46
51
55 void onTransmissionError() final;
56
57private:
58
59 DataSenderIfc& m_lowerLevelSender;
60 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
61 DataFrame m_sendDataFrame;
62 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
63 uint16_t m_initialCrcValue;
64};
65
66} // namespace remoting
67} // namespace lib
68} // namespace base
69} // namespace imt
70
71#endif // IMT_BASE_LIB_REMOTING_DATAFRAMECRC16CHECKSENDLAYER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
This layer checks incoming data frames for crc errors.
bool sendData(uint8_t const pData[], uint32_t const countDataBytes) final
void setInitialCrcValue(uint16_t const initialCrcValue)
Set the initial CRC value to increase robustness of CRC-16 checksum.
DataFrameCRC16CheckSendLayer(DataSenderIfc &lowerLevelSender)
Constructor.
Representation of a package of data that gets transmitted e.g.
Definition DataFrame.h:19
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 __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62