mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 01:43:59 +09:00
217 lines
8.4 KiB
C
217 lines
8.4 KiB
C
/*==================================================================================================
|
|
* Project : RTD AUTOSAR 4.4
|
|
* Platform : CORTEXM
|
|
* Peripheral : LPI2C
|
|
* 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.
|
|
==================================================================================================*/
|
|
|
|
/**
|
|
* @file
|
|
*
|
|
* @addtogroup LPI2C_DRIVER_CONFIGURATION Lpi2c Driver Configurations
|
|
* @{
|
|
*/
|
|
|
|
|
|
#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 "Lpi2c_Ip_BOARD_InitPeripherals_PBCfg.h"
|
|
#include "Mcal.h"
|
|
|
|
#if (STD_ON == LPI2C_IP_DMA_FEATURE_AVAILABLE)
|
|
#include "Dma_Ip.h"
|
|
#endif
|
|
/*==================================================================================================
|
|
* SOURCE FILE VERSION INFORMATION
|
|
==================================================================================================*/
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_VENDOR_ID_C 43
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_MODULE_ID_C 255
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MAJOR_VERSION_C 4
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MINOR_VERSION_C 4
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_REVISION_VERSION_C 0
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MAJOR_VERSION_C 0
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MINOR_VERSION_C 9
|
|
#define LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_PATCH_VERSION_C 0
|
|
|
|
|
|
/*==================================================================================================
|
|
FILE VERSION CHECKS
|
|
==================================================================================================*/
|
|
|
|
/* Check if current file and I2c header file are of the same vendor */
|
|
#if (LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_VENDOR_ID_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_VENDOR_ID)
|
|
#error "Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.c and Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.h have different vendor ids"
|
|
#endif
|
|
/* Check if current file and I2c header file are of the same Autosar version */
|
|
#if ((LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MAJOR_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MAJOR_VERSION) || \
|
|
(LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MINOR_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_MINOR_VERSION) || \
|
|
(LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_REVISION_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_AR_RELEASE_REVISION_VERSION) \
|
|
)
|
|
#error "AutoSar Version Numbers of Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.c and Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.h are different"
|
|
#endif
|
|
/* Check if current file and I2c header file are of the same Software version */
|
|
#if ((LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MAJOR_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MAJOR_VERSION) || \
|
|
(LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MINOR_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_MINOR_VERSION) || \
|
|
(LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_PATCH_VERSION_C != LPI2C_IP_BOARD_INITPERIPHERALS_PBCFG_SW_PATCH_VERSION) \
|
|
)
|
|
#error "Software Version Numbers of Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.c and Lpi2c_Ip_BOARD_InitPeripherals_PBcfg.h are different"
|
|
#endif
|
|
|
|
/*==================================================================================================
|
|
LOCAL TYPEDEFS (STRUCTURES, UNIONS, ENUMS)
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
* LOCAL MACROS
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL VARIABLES
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
GLOBAL CONSTANTS
|
|
==================================================================================================*/
|
|
|
|
#define I2C_START_SEC_CONFIG_DATA_UNSPECIFIED
|
|
#include "I2c_MemMap.h"
|
|
|
|
|
|
const Lpi2c_Ip_BaudRateType baudrateParams0_BOARD_InitPeripherals =
|
|
{
|
|
LPI2C_MASTER_PRESC_DIV_32, /* Prescaler */
|
|
5U, /* Clock HI period */
|
|
5U, /* Clock LO period */
|
|
0U, /* Setup Delay */
|
|
0U, /* Data Valid */
|
|
1U, /* Clock High HS */
|
|
3U, /* Clock Low HS*/
|
|
2U, /* Setup Delay HS */
|
|
1U /* Data Valid HS */
|
|
};
|
|
|
|
const Lpi2c_Ip_MasterConfigType I2c_Lpi2cMasterChannel0_BOARD_InitPeripherals =
|
|
{
|
|
/* Slave address */
|
|
50U,
|
|
/*10-bit address */
|
|
FALSE,
|
|
/* Operating Mode */
|
|
LPI2C_STANDARD_MODE,
|
|
/* Baudrate parameters */
|
|
&baudrateParams0_BOARD_InitPeripherals,
|
|
/* Pin Low Timeout */
|
|
0,
|
|
/* Bus Idle Timeout */
|
|
0,
|
|
/* Glitch Filter SDA */
|
|
0,
|
|
/* Glitch Filter SDA */
|
|
0,
|
|
/* Master code */
|
|
0U,
|
|
/* Transfer Type */
|
|
LPI2C_USING_INTERRUPTS,
|
|
/* Dma Tx channel */
|
|
0,
|
|
/* Dma Rx channel */
|
|
0,
|
|
/* Master Callback */
|
|
NULL_PTR,
|
|
/* I2c Master Callback Parameter */
|
|
0,
|
|
/* Master State Structure */
|
|
&Lpi2c_Ip_MasterState[0]
|
|
};
|
|
|
|
|
|
const Lpi2c_Ip_SlaveConfigType I2c_Lpi2cSlaveChannel1_BOARD_InitPeripherals =
|
|
{
|
|
/* Slave Address */
|
|
50U,
|
|
/* 10 bit address */
|
|
FALSE,
|
|
/* Slave listening */
|
|
TRUE,
|
|
/* Operating Mode*/
|
|
LPI2C_STANDARD_MODE,
|
|
/* Transfer type */
|
|
LPI2C_USING_INTERRUPTS,
|
|
/* SDA Glitch Filter */
|
|
0U,
|
|
/* SCL Glitch FIlter */
|
|
0U,
|
|
/* Dma Tx channel */
|
|
0,
|
|
/* Dma Rx channel */
|
|
0,
|
|
/* Slave Callback */
|
|
NULL_PTR,
|
|
/* Slave Callback Param */
|
|
NULL_PTR,
|
|
/* Slave State Structure */
|
|
&Lpi2c_Ip_SlaveState[0]
|
|
};
|
|
|
|
|
|
#define I2C_STOP_SEC_CONFIG_DATA_UNSPECIFIED
|
|
#include "I2c_MemMap.h"
|
|
|
|
/*==================================================================================================
|
|
GLOBAL VARIABLES
|
|
==================================================================================================*/
|
|
|
|
/*==================================================================================================
|
|
LOCAL FUNCTION PROTOTYPES
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
LOCAL FUNCTIONS
|
|
==================================================================================================*/
|
|
|
|
|
|
/*==================================================================================================
|
|
GLOBAL FUNCTIONS
|
|
==================================================================================================*/
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
/** @} */
|
|
|