198 lines
5.0 KiB
C
198 lines
5.0 KiB
C
/**
|
|
******************************************************************************
|
|
* File Name : I2C.c
|
|
* Description : This file provides code for the configuration
|
|
* of the I2C instances.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2020 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "i2c.h"
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
I2C_HandleTypeDef hi2c2;
|
|
I2C_HandleTypeDef hi2c3;
|
|
|
|
/* I2C2 init function */
|
|
void MX_I2C2_Init(void)
|
|
{
|
|
|
|
hi2c2.Instance = I2C2;
|
|
hi2c2.Init.Timing = 0x20303E5D;
|
|
hi2c2.Init.OwnAddress1 = 0;
|
|
hi2c2.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
|
|
hi2c2.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
|
|
hi2c2.Init.OwnAddress2 = 0;
|
|
hi2c2.Init.OwnAddress2Masks = I2C_OA2_NOMASK;
|
|
hi2c2.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
|
|
hi2c2.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
|
|
if (HAL_I2C_Init(&hi2c2) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
/**Configure Analogue filter
|
|
*/
|
|
if (HAL_I2CEx_ConfigAnalogFilter(&hi2c2, I2C_ANALOGFILTER_ENABLE) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
/**Configure Digital filter
|
|
*/
|
|
if (HAL_I2CEx_ConfigDigitalFilter(&hi2c2, 0) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
}
|
|
|
|
/* I2C3 init function */
|
|
void MX_I2C3_Init(void)
|
|
{
|
|
|
|
hi2c3.Instance = I2C3;
|
|
hi2c3.Init.Timing = 0x2010091A;
|
|
hi2c3.Init.OwnAddress1 = 0;
|
|
hi2c3.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
|
|
hi2c3.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
|
|
hi2c3.Init.OwnAddress2 = 0;
|
|
hi2c3.Init.OwnAddress2Masks = I2C_OA2_NOMASK;
|
|
hi2c3.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
|
|
hi2c3.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
|
|
if (HAL_I2C_Init(&hi2c3) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
/**Configure Analogue filter
|
|
*/
|
|
if (HAL_I2CEx_ConfigAnalogFilter(&hi2c3, I2C_ANALOGFILTER_ENABLE) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
/**Configure Digital filter
|
|
*/
|
|
if (HAL_I2CEx_ConfigDigitalFilter(&hi2c3, 0) != HAL_OK)
|
|
{
|
|
_Error_Handler(__FILE__, __LINE__);
|
|
}
|
|
|
|
}
|
|
|
|
void HAL_I2C_MspInit(I2C_HandleTypeDef* hi2c)
|
|
{
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
if(hi2c->Instance==I2C2)
|
|
{
|
|
/* USER CODE BEGIN I2C2_MspInit 0 */
|
|
|
|
/* USER CODE END I2C2_MspInit 0 */
|
|
|
|
/**I2C2 GPIO Configuration
|
|
PB13 ------> I2C2_SCL
|
|
PB14 ------> I2C2_SDA
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_13|GPIO_PIN_14;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF4_I2C2;
|
|
HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_I2C2_CLK_ENABLE();
|
|
/* USER CODE BEGIN I2C2_MspInit 1 */
|
|
|
|
/* USER CODE END I2C2_MspInit 1 */
|
|
}
|
|
else if(hi2c->Instance==I2C3)
|
|
{
|
|
/* USER CODE BEGIN I2C3_MspInit 0 */
|
|
|
|
/* USER CODE END I2C3_MspInit 0 */
|
|
|
|
/**I2C3 GPIO Configuration
|
|
PC0 ------> I2C3_SCL
|
|
PC1 ------> I2C3_SDA
|
|
*/
|
|
GPIO_InitStruct.Pin = GPIO_PIN_0|GPIO_PIN_1;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF4_I2C3;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
|
|
/* Peripheral clock enable */
|
|
__HAL_RCC_I2C3_CLK_ENABLE();
|
|
/* USER CODE BEGIN I2C3_MspInit 1 */
|
|
|
|
/* USER CODE END I2C3_MspInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
void HAL_I2C_MspDeInit(I2C_HandleTypeDef* hi2c)
|
|
{
|
|
|
|
if(hi2c->Instance==I2C2)
|
|
{
|
|
/* USER CODE BEGIN I2C2_MspDeInit 0 */
|
|
|
|
/* USER CODE END I2C2_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_I2C2_CLK_DISABLE();
|
|
|
|
/**I2C2 GPIO Configuration
|
|
PB13 ------> I2C2_SCL
|
|
PB14 ------> I2C2_SDA
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOB, GPIO_PIN_13|GPIO_PIN_14);
|
|
|
|
/* USER CODE BEGIN I2C2_MspDeInit 1 */
|
|
|
|
/* USER CODE END I2C2_MspDeInit 1 */
|
|
}
|
|
else if(hi2c->Instance==I2C3)
|
|
{
|
|
/* USER CODE BEGIN I2C3_MspDeInit 0 */
|
|
|
|
/* USER CODE END I2C3_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_I2C3_CLK_DISABLE();
|
|
|
|
/**I2C3 GPIO Configuration
|
|
PC0 ------> I2C3_SCL
|
|
PC1 ------> I2C3_SDA
|
|
*/
|
|
HAL_GPIO_DeInit(GPIOC, GPIO_PIN_0|GPIO_PIN_1);
|
|
|
|
/* USER CODE BEGIN I2C3_MspDeInit 1 */
|
|
|
|
/* USER CODE END I2C3_MspDeInit 1 */
|
|
}
|
|
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|