/* * * Copyright 2019,2020 NXP * SPDX-License-Identifier: Apache-2.0 */ #ifndef APPLET_SE050_VERSION_INFO_H_INCLUDED #define APPLET_SE050_VERSION_INFO_H_INCLUDED #if defined(SSS_USE_FTR_FILE) #include "fsl_sss_ftr.h" #else #include "fsl_sss_ftr_default.h" #endif /* clang-format off */ //#define APPLET_SE050_PROD_NAME "Applet_SE050" //#define APPLET_SE050_VER_STRING_NUM "v03.01.00" //#define APPLET_SE050_PROD_NAME_VER_FULL "Applet_SE050_v03.01.00" #if SSS_HAVE_SE05X_VER_04_04 == 1 # define APPLET_SE050_VER_MAJOR (4u) # define APPLET_SE050_VER_MINOR (4u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_04_08 == 1 # define APPLET_SE050_VER_MAJOR (4u) # define APPLET_SE050_VER_MINOR (8u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_04_12 == 1 # define APPLET_SE050_VER_MAJOR (4u) # define APPLET_SE050_VER_MINOR (12u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_00 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (0u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_02 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (2u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_04 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (4u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_08 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (8u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_10 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (10u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_05_12 == 1 # define APPLET_SE050_VER_MAJOR (5u) # define APPLET_SE050_VER_MINOR (12u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_SE05X_VER_06_00 == 1 # define APPLET_SE050_VER_MAJOR (6u) # define APPLET_SE050_VER_MINOR (0u) # define APPLET_SE050_VER_DEV (0u) #elif SSS_HAVE_FIPS # define APPLET_SE050_VER_MAJOR (3u) # define APPLET_SE050_VER_MINOR (6u) # define APPLET_SE050_VER_DEV (0u) #else # define APPLET_SE050_VER_MAJOR (3u) # define APPLET_SE050_VER_MINOR (1u) # define APPLET_SE050_VER_DEV (0u) # define APPLET_SE050_VER_DEV_PATCH1 (1u) /* Allow this as well */ #endif /* v03.01 = 30001u */ #define APPLET_SE050_VER_MAJOR_MINOR ( 0 \ | (APPLET_SE050_VER_MAJOR * 10000u) \ | (APPLET_SE050_VER_MINOR)) /* v03.01.00 = 300010000ULL */ #define APPLET_SE050_VER_MAJOR_MINOR_DEV ( 0 \ | (APPLET_SE050_VER_MAJOR * 10000*10000u) \ | (APPLET_SE050_VER_MINOR * 10000u) \ | (APPLET_SE050_VER_DEV)) /* clang-format on */ /* Version Information: * Generated by: * ..\..\..\scripts\version_info.py (v2019.01.17_00) * * Do not edit this file. Update: * ./version_info.txt instead. * * * prod_name = "Applet_SE050" * * prod_desc = "Applet AR6" * * lang_c_prefix = prod_name.upper() * * lang_namespace = "" * * v_major = "03" * * v_minor = "01" * * v_dev = "00" * * v_meta = "" * * maturity = "P" * */ #endif /* APPLET_SE050_VERSION_INFO_H_INCLUDED */