/************************************************************************** * * Copyright (c) 2021-2023 Diality Inc. - All Rights Reserved. * * 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 Compatible.h * * @author (last) Dara Navaei * @date (last) 03-Aug-2023 * * @author (original) Sean Nash * @date (original) 06-May-2021 * ***************************************************************************/ #ifndef __COMPATIBLE_H__ #define __COMPATIBLE_H__ // ********** public definitions ********** /** * @addtogroup Compatibility * @{ */ #define SW_COMPATIBILITY_REV 8 ///< Compatibility revision for all system software stacks (HD and DG and UI). #define HD_FPGA_COMPATIBILITY_REV 1 ///< Compatibility revision for HD firmware with HD FPGA. #define DG_FPGA_COMPATIBILITY_REV 2 ///< Compatibility revision for DG firmware with DG FPGA. // UI version #define UI_VERSION_MAJAR 0 ///< UI version majar. #define UI_VERSION_MINOR 6 ///< UI version minor. #define UI_VERSION_MICRO 3 ///< UI version micro. // The Encrypted partition generation algorithm changed, and any old configuration cannot be decrypted. // UI_VERSION_MICRO 2 ///< UI version micro. // The Cybersecurity additions and Encrypted partition for configurations // UI_VERSION_MICRO 1 ///< UI version micro. // Moved from Qt 5.12.5 to 5.15.10 // UI_VERSION_BUILD ///< UI version build number will be generated by bambu and UI reads it from environment variable on Bamboo server. // UI_VERSION_COMPATIBILITY ///< UI reads this value from SW_COMPATIBILITY_REV in this file. /**@}*/ #endif