/************************************************************************** * * Copyright (c) 2024-2024 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) Sean * @date (last) 30-Jul-2024 * * @author (original) Sean * @date (original) 30-Jul-2024 * ***************************************************************************/ #ifndef __COMPATIBLE_H__ #define __COMPATIBLE_H__ // ********** public definitions ********** /** * @addtogroup Compatibility * @{ */ #define SW_COMPATIBILITY_REV 0 ///< Compatibility revision for all system software stacks (TD, DD, RO and UI). #define TD_FPGA_COMPATIBILITY_REV 1 ///< Compatibility revision for TD firmware with TD FPGA. #define DD_FPGA_COMPATIBILITY_REV 0 ///< Compatibility revision for DD firmware with DD FPGA. #define RO_FPGA_COMPATIBILITY_REV 1 ///< Compatibility revision for RO firmware with RO FPGA. /**@}*/ #endif