Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
DataRecord.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_SCRECCONVERTER_DATARECORD_H
4#define IMT_BASE_LIB_SCRECCONVERTER_DATARECORD_H
5
6#include <array>
8
9namespace imt {
10namespace base {
11namespace lib {
12namespace srecconverter {
13
17// AXIVION Next Construct AutosarC++19_03-A11.0.1: POD struct with public fields is allowed.
18// AXIVION Next Construct AutosarC++19_03-A11.0.2: POD struct with public fields is allowed.
19// AXIVION Next Construct AutosarC++19_03-M11.0.1: POD struct with public fields is allowed.
20struct DataRecord final {
21
25 static constexpr uint16_t MAX_RECORD_SIZE {256U};
26
30 DataRecord() = default;
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 DataRecord(uint32_t const startAddress, uint16_t const length, uint8_t const* const pData);
38
42 void clear();
43
48
53
57 std::array<uint8_t, MAX_RECORD_SIZE> m_data;
58};
59
60} // namespace srecconverter
61} // namespace lib
62} // namespace base
63} // namespace imt
64
65#endif // IMT_BASE_LIB_SCRECCONVERTER_DATARECORD_H
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
uint32_t m_startAddress
Start address of record.
Definition DataRecord.h:47
std::array< uint8_t, MAX_RECORD_SIZE > m_data
Record data.
Definition DataRecord.h:57
DataRecord(uint32_t const startAddress, uint16_t const length, uint8_t const *const pData)
Constructor.
static constexpr uint16_t MAX_RECORD_SIZE
Maximal record size in bytes.
Definition DataRecord.h:25
uint16_t m_length
Number of bytes in record.
Definition DataRecord.h:52