Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataFrameCRC16CheckReceiveLayer.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_DATAFRAMECRC16CHECKRECEIVELAYER_H
4#define IMT_BASE_LIB_REMOTING_DATAFRAMECRC16CHECKRECEIVELAYER_H
5
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace remoting {
17
21// AXIVION Next Construct AutosarC++19_03-M3.4.1: No definition in primary file to separate concerns.
24
25public:
26
32 DataFrameCRC16CheckReceiveLayer(DataReceiverIfc& upperLevelReceiver, CRC16CheckFailedCallbackIfc& crc16CheckFailedCallback);
33
37 // AXIVION Next Codeline AutosarC++19_03-A8.4.7: Pass by value not possible for byte array.
38 void onDataReceived(uint8_t const* const pData, uint32_t const countDataBytes) final;
39
46 void setInitialCrcValue(uint16_t const initialCrcValue);
47
48private:
49
50 DataReceiverIfc& m_upperLevelReceiver;
51 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
52 DataFrame m_receiveDataFrame;
53 CRC16CheckFailedCallbackIfc& m_crc16CheckFailedCallback;
54 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
55 uint16_t m_initialCrcValue;
56};
57
58} // namespace remoting
59} // namespace lib
60} // namespace base
61} // namespace imt
62
63#endif // IMT_BASE_LIB_REMOTING_DATAFRAMECRC16CHECKRECEIVELAYER_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.
void onDataReceived(uint8_t const *const pData, uint32_t const countDataBytes) final
DataFrameCRC16CheckReceiveLayer(DataReceiverIfc &upperLevelReceiver, CRC16CheckFailedCallbackIfc &crc16CheckFailedCallback)
Constructor.
void setInitialCrcValue(uint16_t const initialCrcValue)
Set the initial CRC value to increase robustness of CRC-16 checksum.
Representation of a package of data that gets transmitted e.g.
Definition DataFrame.h:19
Inteface for a receiver that can be called when received data needs to be processed.
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