/*================================================================================================== * Project : RTD AUTOSAR 4.4 * Platform : CORTEXM * Peripheral : * Dependencies : none * * Autosar Version : 4.4.0 * Autosar Revision : ASR_REL_4_4_REV_0000 * Autosar Conf.Variant : * SW Version : 1.0.0 * Build Version : S32K1_RTD_1_0_0_HF01_D2109_ASR_REL_4_4_REV_0000_20210907 * * (c) Copyright 2020-2021 NXP Semiconductors * All Rights Reserved. * * NXP Confidential. This software is owned or controlled by NXP and may only be * used strictly in accordance with the applicable license terms. By expressly * accepting such terms or by downloading, installing, activating and/or otherwise * using the software, you are agreeing that you have read, and that you agree to * comply with and are bound by, such license terms. If you do not agree to be * bound by the applicable license terms, then you may not retain, install, * activate or otherwise use the software. ==================================================================================================*/ /** * @file Mcu_VS_0_PBcfg.c * @implements Mcu_PBcfg.c_Artifact * @version 1.0.0 * * @brief AUTOSAR Mcu - Data structures for the Mcu driver. * @details Postbuild structure configurations for the driver initalization. * * @addtogroup MCU * @{ */ #ifdef __cplusplus extern "C" { #endif /*================================================================================================== INCLUDE FILES 1) system and project includes 2) needed interfaces from external units 3) internal and external interfaces from this unit ==================================================================================================*/ #include "Mcu.h" #if (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF) #include "Dem.h" #endif /* (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF) */ /*================================================================================================== SOURCE FILE VERSION INFORMATION ==================================================================================================*/ #define MCU_VS_0_PBCFG_VENDOR_ID_C 43 #define MCU_VS_0_PBCFG_AR_RELEASE_MAJOR_VERSION_C 4 #define MCU_VS_0_PBCFG_AR_RELEASE_MINOR_VERSION_C 4 #define MCU_VS_0_PBCFG_AR_RELEASE_REVISION_VERSION_C 0 #define MCU_VS_0_PBCFG_SW_MAJOR_VERSION_C 1 #define MCU_VS_0_PBCFG_SW_MINOR_VERSION_C 0 #define MCU_VS_0_PBCFG_SW_PATCH_VERSION_C 0 /*================================================================================================== * FILE VERSION CHECKS ==================================================================================================*/ #if (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF) #ifndef DISABLE_MCAL_INTERMODULE_ASR_CHECK /* Check if Mcu_VS_0_PBcfg.c file and Dem.h file are of the same Autosar version */ #if ((MCU_VS_0_PBCFG_AR_RELEASE_MAJOR_VERSION_C != DEM_AR_RELEASE_MAJOR_VERSION) || \ (MCU_VS_0_PBCFG_AR_RELEASE_MINOR_VERSION_C != DEM_AR_RELEASE_MINOR_VERSION)) #error "AutoSar Version Numbers of Mcu_VS_0_PBcfg.c and Dem.h are different" #endif #endif #endif /* (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF) */ /* Check if Mcu_VS_0_PBcfg.c file and Mcu.h file are of the same vendor */ #if (MCU_VS_0_PBCFG_VENDOR_ID_C != MCU_VENDOR_ID) #error "Mcu_VS_0_PBcfg.c and Mcu.h have different vendor ids" #endif /* Check if Mcu_VS_0_PBcfg.c file and Mcu.h file are of the same Autosar version */ #if ((MCU_VS_0_PBCFG_AR_RELEASE_MAJOR_VERSION_C != MCU_AR_RELEASE_MAJOR_VERSION) || \ (MCU_VS_0_PBCFG_AR_RELEASE_MINOR_VERSION_C != MCU_AR_RELEASE_MINOR_VERSION) || \ (MCU_VS_0_PBCFG_AR_RELEASE_REVISION_VERSION_C != MCU_AR_RELEASE_REVISION_VERSION) \ ) #error "AutoSar Version Numbers of Mcu_VS_0_PBcfg.c and Mcu.h are different" #endif /* Check if Mcu_VS_0_PBcfg.c file and Mcu.h file are of the same Software version */ #if ((MCU_VS_0_PBCFG_SW_MAJOR_VERSION_C != MCU_SW_MAJOR_VERSION) || \ (MCU_VS_0_PBCFG_SW_MINOR_VERSION_C != MCU_SW_MINOR_VERSION) || \ (MCU_VS_0_PBCFG_SW_PATCH_VERSION_C != MCU_SW_PATCH_VERSION) \ ) #error "Software Version Numbers of Mcu_VS_0_PBcfg.c and Mcu.h are different" #endif /*================================================================================================== LOCAL TYPEDEFS (STRUCTURES, UNIONS, ENUMS) ==================================================================================================*/ /*================================================================================================== LOCAL MACROS ==================================================================================================*/ /*================================================================================================== LOCAL CONSTANTS ==================================================================================================*/ /*================================================================================================== LOCAL VARIABLES ==================================================================================================*/ /*================================================================================================== GLOBAL CONSTANTS ==================================================================================================*/ #define MCU_START_SEC_CONFIG_DATA_UNSPECIFIED #include "Mcu_MemMap.h" /*================================================================================================== GLOBAL VARIABLES ==================================================================================================*/ /** * @brief Initialization data for the MCU driver. * @details A pointer to such a structure is provided to the MCU initialization routines for configuration. * */ const Mcu_ConfigType Mcu_PreCompileConfig = { #if (MCU_INIT_CLOCK == STD_ON) /* Globally enable/disable SCM, loss of clock and loss of lock notification. */ MCU_CLK_NOTIF_DIS, #endif #if (MCU_DISABLE_DEM_REPORT_ERROR_STATUS == STD_OFF) /* Pointer to DEM error reporting configurations. */ &Mcu_Dem_Config, #endif /* Number of RAM Sections configurations. */ (Mcu_RamSectionType)0U, /* Number of Power Modes configurations. */ (Mcu_ModeType)1U, #if (MCU_INIT_CLOCK == STD_ON) /* Number of Clock Setting configurations. */ (Mcu_ClockType)1U, #endif /* (MCU_INIT_CLOCK == STD_ON) */ #ifndef MCU_MAX_NORAMCONFIGS /* Pointer to RAM Section configurations. */ (NULL_PTR), #endif /* Pointer to Power Mode configurations. */ &Power_Ip_aModeConfigPB_VS_0, #if (MCU_INIT_CLOCK == STD_ON) /* Pointer to Clock configurations. */ &Mcu_aClockConfigPB_VS_0, #endif /* (MCU_INIT_CLOCK == STD_ON) */ /* Pointer to Low Level Mcu driver configuration. */ &Power_Ip_HwIPsConfigPB_VS_0 }; #define MCU_STOP_SEC_CONFIG_DATA_UNSPECIFIED #include "Mcu_MemMap.h" /*================================================================================================== LOCAL FUNCTION PROTOTYPES ==================================================================================================*/ /*================================================================================================== LOCAL FUNCTIONS ==================================================================================================*/ /*================================================================================================== GLOBAL FUNCTIONS ==================================================================================================*/ #ifdef __cplusplus } #endif /** @} */