i2c.c 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /**
  2. ******************************************************************************
  3. * File Name : I2C.c
  4. * Description : This file provides code for the configuration
  5. * of the I2C instances.
  6. ******************************************************************************
  7. ** This notice applies to any and all portions of this file
  8. * that are not between comment pairs USER CODE BEGIN and
  9. * USER CODE END. Other portions of this file, whether
  10. * inserted by the user or by software development tools
  11. * are owned by their respective copyright owners.
  12. *
  13. * COPYRIGHT(c) 2019 STMicroelectronics
  14. *
  15. * Redistribution and use in source and binary forms, with or without modification,
  16. * are permitted provided that the following conditions are met:
  17. * 1. Redistributions of source code must retain the above copyright notice,
  18. * this list of conditions and the following disclaimer.
  19. * 2. Redistributions in binary form must reproduce the above copyright notice,
  20. * this list of conditions and the following disclaimer in the documentation
  21. * and/or other materials provided with the distribution.
  22. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  23. * may be used to endorse or promote products derived from this software
  24. * without specific prior written permission.
  25. *
  26. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  27. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  29. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  30. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  32. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  33. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  34. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  35. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  36. *
  37. ******************************************************************************
  38. */
  39. /* Includes ------------------------------------------------------------------*/
  40. #include "i2c.h"
  41. #include "gpio.h"
  42. /* USER CODE BEGIN 0 */
  43. /* USER CODE END 0 */
  44. I2C_HandleTypeDef hi2c1;
  45. /* I2C1 init function */
  46. void MX_I2C1_Init(void)
  47. {
  48. hi2c1.Instance = I2C1;
  49. hi2c1.Init.ClockSpeed = 100000;
  50. hi2c1.Init.DutyCycle = I2C_DUTYCYCLE_2;
  51. hi2c1.Init.OwnAddress1 = 0;
  52. hi2c1.Init.AddressingMode = I2C_ADDRESSINGMODE_7BIT;
  53. hi2c1.Init.DualAddressMode = I2C_DUALADDRESS_DISABLE;
  54. hi2c1.Init.OwnAddress2 = 0;
  55. hi2c1.Init.GeneralCallMode = I2C_GENERALCALL_DISABLE;
  56. hi2c1.Init.NoStretchMode = I2C_NOSTRETCH_DISABLE;
  57. if (HAL_I2C_Init(&hi2c1) != HAL_OK)
  58. {
  59. _Error_Handler(__FILE__, __LINE__);
  60. }
  61. }
  62. void HAL_I2C_MspInit(I2C_HandleTypeDef* i2cHandle)
  63. {
  64. GPIO_InitTypeDef GPIO_InitStruct;
  65. if(i2cHandle->Instance==I2C1)
  66. {
  67. /* USER CODE BEGIN I2C1_MspInit 0 */
  68. /* USER CODE END I2C1_MspInit 0 */
  69. /**I2C1 GPIO Configuration
  70. PB6 ------> I2C1_SCL
  71. PB7 ------> I2C1_SDA
  72. */
  73. GPIO_InitStruct.Pin = GPIO_PIN_6|GPIO_PIN_7;
  74. GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
  75. GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_HIGH;
  76. HAL_GPIO_Init(GPIOB, &GPIO_InitStruct);
  77. /* I2C1 clock enable */
  78. __HAL_RCC_I2C1_CLK_ENABLE();
  79. /* USER CODE BEGIN I2C1_MspInit 1 */
  80. /* USER CODE END I2C1_MspInit 1 */
  81. }
  82. }
  83. void HAL_I2C_MspDeInit(I2C_HandleTypeDef* i2cHandle)
  84. {
  85. if(i2cHandle->Instance==I2C1)
  86. {
  87. /* USER CODE BEGIN I2C1_MspDeInit 0 */
  88. /* USER CODE END I2C1_MspDeInit 0 */
  89. /* Peripheral clock disable */
  90. __HAL_RCC_I2C1_CLK_DISABLE();
  91. /**I2C1 GPIO Configuration
  92. PB6 ------> I2C1_SCL
  93. PB7 ------> I2C1_SDA
  94. */
  95. HAL_GPIO_DeInit(GPIOB, GPIO_PIN_6|GPIO_PIN_7);
  96. /* USER CODE BEGIN I2C1_MspDeInit 1 */
  97. /* USER CODE END I2C1_MspDeInit 1 */
  98. }
  99. }
  100. /* USER CODE BEGIN 1 */
  101. /* USER CODE END 1 */
  102. /**
  103. * @}
  104. */
  105. /**
  106. * @}
  107. */
  108. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/