/*================================================================================================== * Project : RTD AUTOSAR 4.7 * Platform : CORTEXM * Peripheral : S32K14X * Dependencies : none * * Autosar Version : 4.7.0 * Autosar Revision : ASR_REL_4_7_REV_0000 * Autosar Conf.Variant : * SW Version : 2.0.0 * Build Version : S32K1_RTD_2_0_0_P03_D2312_ASR_REL_4_7_REV_0000_20231229 * * Copyright 2020-2023 NXP Semiconductors * * 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 MemAcc_GeneralTypes.h * * @version 2.0.0 * * @brief AUTOSAR BaseNXP - General Types. * @details API header for all types and constants that are shared among the module mem. * This file contains sample code only. It is not part of the production code deliverables * @addtogroup BASENXP_COMPONENT * @{ */ #ifndef MEMACC_GENERAL_TYPES_H #define MEMACC_GENERAL_TYPES_H #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 "ComStack_Cfg.h" /*================================================================================================== * SOURCE FILE VERSION INFORMATION ==================================================================================================*/ /** @{ * @brief Parameters that shall be published within the modules header file. * The integration of incompatible files shall be avoided. */ #define MEMACC_GENERALTYPES_AR_RELEASE_MAJOR_VERSION 4 #define MEMACC_GENERALTYPES_AR_RELEASE_MINOR_VERSION 7 /**@}*/ /*================================================================================================== * FILE VERSION CHECKS ==================================================================================================*/ /*================================================================================================== * CONSTANTS ==================================================================================================*/ /*================================================================================================== * DEFINES AND MACROS ==================================================================================================*/ /** * @brief According to SWS_Mem_00070: In case a service is not relevant for a specific memory device technology, * the service shall always return E_MEM_SERVICE_NOT_AVAIL. * The return code is implementation-defined (see SWS_Std_00011 and SWS_Std_00005). * @implements SymbolDefinitions_enum */ #define E_MEM_SERVICE_NOT_AVAIL 0x02U /*================================================================================================== * ENUMS ==================================================================================================*/ /*================================================================================================== * STRUCTURES AND OTHER TYPEDEFS ==================================================================================================*/ /*================================================================================================== * GLOBAL VARIABLE DECLARATIONS ==================================================================================================*/ /*================================================================================================== * FUNCTION PROTOTYPES ==================================================================================================*/ #ifdef __cplusplus } #endif #endif /*MEMACC_GENERAL_TYPES_H*/ /** @} */