/* * Copyright 2021-2024 NXP * * SPDX-License-Identifier: BSD-3-Clause */ /** * @file ComStack_Cfg.h * * @version 2.0.0 * * @brief AUTOSAR BaseNXP - type definition of the PduIdType and PduLengthType. * @details AUTOSAR type definition of the PduIdType and PduLengthType. shall be generated by * the generator of EcuC Virtual Layer * This file contains sample code only. It is not part of the production code deliverables * @addtogroup BASENXP_COMPONENT * @{ */ #ifndef COMSTACK_CFG_H #define COMSTACK_CFG_H #ifdef __cplusplus extern "C"{ #endif /*================================================================================================== * INCLUDE FILES ==================================================================================================*/ #include "Platform_Types.h" /*================================================================================================== * SOURCE FILE VERSION INFORMATION ==================================================================================================*/ /*================================================================================================== * CONSTANTS ==================================================================================================*/ /*================================================================================================== * DEFINES AND MACROS ==================================================================================================*/ /*================================================================================================== * STRUCTURES AND OTHER TYPEDEFS ==================================================================================================*/ /** * @brief This type serve as a unique identifier of a PDU within a software module. * Allowed ranges: uint8 .. uint16 * @implements PduIdType_type */ typedef uint16 PduIdType; /** * @brief This type serve as length information of a PDU in bytes. * Allowed ranges: uint8 .. uint32 * @implements PduLengthType_Type */ typedef uint32 PduLengthType; /*================================================================================================== * GLOBAL VARIABLE DECLARATIONS ==================================================================================================*/ /*================================================================================================== * FUNCTION PROTOTYPES ==================================================================================================*/ #ifdef __cplusplus } #endif #endif /* COMSTACK_CFG_H */ /** @} */