123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /**
- * @file Os_cfg.h
- * @version 1.0.0
- *
- * @brief AUTOSAR Os - Project configuration.
- * @details Header file describing all Autosar MCAL Os_cfg present in the current project.
- *
- * @addtogroup BASE_COMPONENT
- * @{
- */
- /*==================================================================================================
- * Project : RTD AUTOSAR 4.4
- * Platform : CORTEXM
- * Peripheral : generic
- * Dependencies :
- *
- * 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.
- ==================================================================================================*/
- /*==================================================================================================
- ==================================================================================================*/
- /**
- * @file Os_cfg.h
- */
- /**
- * @page misra_violations MISRA-C:2004 violations
- *
- * @section [global]
- * Violates MISRA 2004 Required Rule 5.1, Identifiers (internal and external) shall not rely
- * on the significance of more than 31 characters. The used compilers use more than 31 chars for
- * identifiers.
- */
- #ifndef OS_CFG_H
- #define OS_CFG_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
- ==================================================================================================*/
- /**
- * @file Os_cfg.h
- * @brief Include Standard types & defines
- */
- #include "Std_Types.h"
- /*==================================================================================================
- * SOURCE FILE VERSION INFORMATION
- ==================================================================================================*/
- /**
- @{
- * @brief Parameters that shall be published within the Os_cfg header file.
- * The integration of incompatible files shall be avoided.
- */
- #define OS_CFG_VENDOR_ID 43
- #define OS_CFG_MODULE_ID 0x01
- #define OS_CFG_AR_RELEASE_MAJOR_VERSION_H 4
- #define OS_CFG_AR_RELEASE_MINOR_VERSION_H 4
- #define OS_CFG_AR_RELEASE_REVISION_VERSION_H 0
- #define OS_CFG_SW_MAJOR_VERSION_H 1
- #define OS_CFG_SW_MINOR_VERSION_H 0
- #define OS_CFG_SW_PATCH_VERSION_H 0
- /**@}*/
- /*==================================================================================================
- * FILE VERSION CHECKS
- ==================================================================================================*/
- #ifndef DISABLE_MCAL_INTERMODULE_ASR_CHECK
- /* Check if source file and Std_Types.h header file are of the same Autosar version */
- #if ((OS_CFG_AR_RELEASE_MAJOR_VERSION_H != STD_AR_RELEASE_MAJOR_VERSION) || \
- (OS_CFG_AR_RELEASE_MINOR_VERSION_H != STD_AR_RELEASE_MINOR_VERSION))
- #error "AutoSar Version Numbers of Os_cfg.h and Std_Types.h are different"
- #endif
- #endif
- /*==================================================================================================
- * CONSTANTS
- ==================================================================================================*/
- /*==================================================================================================
- * DEFINES AND MACROS
- ==================================================================================================*/
- #define OsCounter_0 0
- #define OS_TICKS2NS_OsCounter_0(x) 10000U
- #define OS_TICKS2US_OsCounter_0(x) 10U
- /*==================================================================================================
- * ENUMS
- ==================================================================================================*/
- /*==================================================================================================
- * STRUCTURES AND OTHER TYPEDEFS
- ==================================================================================================*/
- /*==================================================================================================
- * GLOBAL VARIABLE DECLARATIONS
- ==================================================================================================*/
- /*==================================================================================================
- * FUNCTION PROTOTYPES
- ==================================================================================================*/
- #ifdef __cplusplus
- }
- #endif
- #endif /* OS_CFG_H */
- /** @} */
|