Index: sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h =================================================================== diff -u -rebc82b5efe26c1081606fab06a1c99bb4f9c0098 -r2ef03b2ce51b4dc507f66e9671953a8e0824bde9 --- sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h (.../MAdjustHDVersionsResponse.h) (revision ebc82b5efe26c1081606fab06a1c99bb4f9c0098) +++ sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h (.../MAdjustHDVersionsResponse.h) (revision 2ef03b2ce51b4dc507f66e9671953a8e0824bde9) @@ -1,15 +1,15 @@ /*! * - * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file MAdjustHDVersionsResponse.h - * \author (last) Peman Montazemi - * \date (last) 6-Nov-2020 - * \author (original) Peman Montazemi - * \date (original) 4-Nov-2020 + * \author (last) Michael Garthwaite + * \date (last) 28-Feb-2022 + * \author (original) Behrouz NematiPour + * \date (original) 16-Apr-2021 * */ #pragma once @@ -36,14 +36,15 @@ * * | Payload || * | || - * | #1:(U08) | \ref Data::mHDMajor | - * | #2:(U08) | \ref Data::mHDMinor | - * | #3:(U08) | \ref Data::mHDMicro | - * | #4:(U16) | \ref Data::mHDBuild | - * | #5:(U08) | \ref Data::mHDFPGAId | - * | #6:(U08) | \ref Data::mHDFPGAMajor | - * | #7:(U08) | \ref Data::mHDFPGAMinor | - * | #8:(U08) | \ref Data::mHDFPGALab | + * | #1:(U08) | \ref Data::mHDMajor | + * | #2:(U08) | \ref Data::mHDMinor | + * | #3:(U08) | \ref Data::mHDMicro | + * | #4:(U16) | \ref Data::mHDBuild | + * | #5:(U08) | \ref Data::mHDFPGAId | + * | #6:(U08) | \ref Data::mHDFPGAMajor | + * | #7:(U08) | \ref Data::mHDFPGAMinor | + * | #8:(U08) | \ref Data::mHDFPGALab | + * | #9:(U32) | \ref Data::mCompatibilityRev | * * \sa Data * \sa MAdjustVersionsHDResponse : HD Versions Response Data @@ -64,14 +65,15 @@ QVariantList parameters() const override; struct { - Types::U08 mMajor ; - Types::U08 mMinor ; - Types::U08 mMicro ; - Types::U16 mBuild ; - Types::U08 mFPGAId ; - Types::U08 mFPGAMajor ; - Types::U08 mFPGAMinor ; - Types::U08 mFPGALab ; + Types::U08 mMajor ; + Types::U08 mMinor ; + Types::U08 mMicro ; + Types::U16 mBuild ; + Types::U08 mFPGAId ; + Types::U08 mFPGAMajor ; + Types::U08 mFPGAMinor ; + Types::U08 mFPGALab ; + Types::U32 mCompatibilityRev ; } _data; public: @@ -81,14 +83,15 @@ QString infoText () const override { return QString("VersionRsp") ; } struct Data { - quint8 mMajor = 0; /*!< HD Versions Major value of type quint8 extracted out */ - quint8 mMinor = 0; /*!< HD Versions Minor value of type quint8 extracted out */ - quint8 mMicro = 0; /*!< HD Versions Micro value of type quint8 extracted out */ - quint16 mBuild = 0; /*!< HD Versions Build value of type quint16 extracted out */ - quint8 mFPGAId = 0; /*!< HD Versions FPGA ID value of type quint8 extracted out */ - quint8 mFPGAMajor = 0; /*!< HD Versions FPGA Major value of type quint8 extracted out */ - quint8 mFPGAMinor = 0; /*!< HD Versions FPGA Minor value of type quint8 extracted out */ - quint8 mFPGALab = 0; /*!< HD Versions FPGA Lab value of type quint8 extracted out */ + quint8 mMajor = 0; /*!< HD Versions Major value of type quint8 extracted out */ + quint8 mMinor = 0; /*!< HD Versions Minor value of type quint8 extracted out */ + quint8 mMicro = 0; /*!< HD Versions Micro value of type quint8 extracted out */ + quint16 mBuild = 0; /*!< HD Versions Build value of type quint16 extracted out */ + quint8 mFPGAId = 0; /*!< HD Versions FPGA ID value of type quint8 extracted out */ + quint8 mFPGAMajor = 0; /*!< HD Versions FPGA Major value of type quint8 extracted out */ + quint8 mFPGAMinor = 0; /*!< HD Versions FPGA Minor value of type quint8 extracted out */ + quint8 mFPGALab = 0; /*!< HD Versions FPGA Lab value of type quint8 extracted out */ + quint32 mCompatibilityRev = 0; /*!< HD Versions Compatibility Revision */ }; MAdjustVersionsHDResponse () { }