mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 01:43:59 +09:00
113 lines
5.6 KiB
C
113 lines
5.6 KiB
C
/*==================================================================================================
|
|
* Project : RTD AUTOSAR 4.4
|
|
* Platform : CORTEXM
|
|
* Peripheral : DMA,CACHE,TRGMUX,LCU,EMIOS,FLEXIO
|
|
* Dependencies : none
|
|
*
|
|
* Autosar Version : 4.4.0
|
|
* Autosar Revision : ASR_REL_4_4_REV_0000
|
|
* Autosar Conf.Variant :
|
|
* SW Version : 0.9.0
|
|
* Build Version : S32K3_RTD_0_9_0__ASR_REL_4_4_REV_0000_20210326
|
|
*
|
|
* (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.
|
|
==================================================================================================*/
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
/**
|
|
* @page misra_violations MISRA-C:2012 violations
|
|
**/
|
|
|
|
/*==================================================================================================
|
|
INCLUDE FILES
|
|
1) system and project includes
|
|
2) needed interfaces from external units
|
|
3) internal and external interfaces from this unit
|
|
==================================================================================================*/
|
|
#include "Flexio_Mcl_Ip_Cfg.h"
|
|
|
|
/*==================================================================================================
|
|
* SOURCE FILE VERSION INFORMATION
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
FILE VERSION CHECKS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL TYPEDEFS (STRUCTURES, UNIONS, ENUMS)
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL MACROS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL VARIABLES
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
GLOBAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
GLOBAL VARIABLES
|
|
==================================================================================================*/
|
|
#define MCL_START_SEC_CONFIG_DATA_UNSPECIFIED
|
|
/* @violates @ref Mcl_Dma_h_REF_1 MISRA 2012 Required Directive 4.10, Precautions shall be taken in order to prevent the contents of a header file being included more than once. */
|
|
#include "Mcl_MemMap.h"
|
|
/**
|
|
* @brief Configuration for Flexio instance
|
|
* @details This structure should contains data about the Flexio common
|
|
* part configurated using Mcl driver
|
|
* @implements Flexio_Ip_InstanceConfigType
|
|
*/
|
|
|
|
const Flexio_Ip_InstanceConfigType Flexio_Ip_xFlexioInit =
|
|
{
|
|
/** @brief Hardware Flexio instance number */
|
|
(uint8)0U,
|
|
TRUE,
|
|
};
|
|
#define MCL_STOP_SEC_CONFIG_DATA_UNSPECIFIED
|
|
/* @violates @ref Mcl_Dma_h_REF_1 MISRA 2012 Required Directive 4.10, Precautions shall be taken in order to prevent the contents of a header file being included more than once. */
|
|
#include "Mcl_MemMap.h"
|
|
|
|
/*==================================================================================================
|
|
LOCAL FUNCTION PROTOTYPES
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL FUNCTIONS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
GLOBAL FUNCTIONS
|
|
==================================================================================================*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/*==================================================================================================
|
|
* END OF FILE
|
|
==================================================================================================*/
|
|
|