Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
112:6f327212ef96
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 112:6f327212ef96 1 /**
Kojto 112:6f327212ef96 2 ******************************************************************************
Kojto 112:6f327212ef96 3 * @file stm32l1xx_hal_i2c.h
Kojto 112:6f327212ef96 4 * @author MCD Application Team
Kojto 112:6f327212ef96 5 * @version V1.0.0
Kojto 112:6f327212ef96 6 * @date 5-September-2014
Kojto 112:6f327212ef96 7 * @brief Header file of I2C HAL module.
Kojto 112:6f327212ef96 8 ******************************************************************************
Kojto 112:6f327212ef96 9 * @attention
Kojto 112:6f327212ef96 10 *
Kojto 112:6f327212ef96 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
Kojto 112:6f327212ef96 12 *
Kojto 112:6f327212ef96 13 * Redistribution and use in source and binary forms, with or without modification,
Kojto 112:6f327212ef96 14 * are permitted provided that the following conditions are met:
Kojto 112:6f327212ef96 15 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 112:6f327212ef96 16 * this list of conditions and the following disclaimer.
Kojto 112:6f327212ef96 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 112:6f327212ef96 18 * this list of conditions and the following disclaimer in the documentation
Kojto 112:6f327212ef96 19 * and/or other materials provided with the distribution.
Kojto 112:6f327212ef96 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 112:6f327212ef96 21 * may be used to endorse or promote products derived from this software
Kojto 112:6f327212ef96 22 * without specific prior written permission.
Kojto 112:6f327212ef96 23 *
Kojto 112:6f327212ef96 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 112:6f327212ef96 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 112:6f327212ef96 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 112:6f327212ef96 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 112:6f327212ef96 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 112:6f327212ef96 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 112:6f327212ef96 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 112:6f327212ef96 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 112:6f327212ef96 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 112:6f327212ef96 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 112:6f327212ef96 34 *
Kojto 112:6f327212ef96 35 ******************************************************************************
Kojto 112:6f327212ef96 36 */
Kojto 112:6f327212ef96 37
Kojto 112:6f327212ef96 38 /* Define to prevent recursive inclusion -------------------------------------*/
Kojto 112:6f327212ef96 39 #ifndef __STM32L1xx_HAL_I2C_H
Kojto 112:6f327212ef96 40 #define __STM32L1xx_HAL_I2C_H
Kojto 112:6f327212ef96 41
Kojto 112:6f327212ef96 42 #ifdef __cplusplus
Kojto 112:6f327212ef96 43 extern "C" {
Kojto 112:6f327212ef96 44 #endif
Kojto 112:6f327212ef96 45
Kojto 112:6f327212ef96 46 /* Includes ------------------------------------------------------------------*/
Kojto 112:6f327212ef96 47 #include "stm32l1xx_hal_def.h"
Kojto 112:6f327212ef96 48
Kojto 112:6f327212ef96 49 /** @addtogroup STM32L1xx_HAL_Driver
Kojto 112:6f327212ef96 50 * @{
Kojto 112:6f327212ef96 51 */
Kojto 112:6f327212ef96 52
Kojto 112:6f327212ef96 53 /** @addtogroup I2C
Kojto 112:6f327212ef96 54 * @{
Kojto 112:6f327212ef96 55 */
Kojto 112:6f327212ef96 56
Kojto 112:6f327212ef96 57 /* Exported types ------------------------------------------------------------*/
Kojto 112:6f327212ef96 58 /** @defgroup I2C_Exported_Types I2C Exported Types
Kojto 112:6f327212ef96 59 * @{
Kojto 112:6f327212ef96 60 */
Kojto 112:6f327212ef96 61
Kojto 112:6f327212ef96 62 /**
Kojto 112:6f327212ef96 63 * @brief I2C Configuration Structure definition
Kojto 112:6f327212ef96 64 */
Kojto 112:6f327212ef96 65 typedef struct
Kojto 112:6f327212ef96 66 {
Kojto 112:6f327212ef96 67 uint32_t ClockSpeed; /*!< Specifies the clock frequency.
Kojto 112:6f327212ef96 68 This parameter must be set to a value lower than 400kHz */
Kojto 112:6f327212ef96 69
Kojto 112:6f327212ef96 70 uint32_t DutyCycle; /*!< Specifies the I2C fast mode duty cycle.
Kojto 112:6f327212ef96 71 This parameter can be a value of @ref I2C_duty_cycle_in_fast_mode */
Kojto 112:6f327212ef96 72
Kojto 112:6f327212ef96 73 uint32_t OwnAddress1; /*!< Specifies the first device own address.
Kojto 112:6f327212ef96 74 This parameter can be a 7-bit or 10-bit address. */
Kojto 112:6f327212ef96 75
Kojto 112:6f327212ef96 76 uint32_t AddressingMode; /*!< Specifies if 7-bit or 10-bit addressing mode is selected.
Kojto 112:6f327212ef96 77 This parameter can be a value of @ref I2C_addressing_mode */
Kojto 112:6f327212ef96 78
Kojto 112:6f327212ef96 79 uint32_t DualAddressMode; /*!< Specifies if dual addressing mode is selected.
Kojto 112:6f327212ef96 80 This parameter can be a value of @ref I2C_dual_addressing_mode */
Kojto 112:6f327212ef96 81
Kojto 112:6f327212ef96 82 uint32_t OwnAddress2; /*!< Specifies the second device own address if dual addressing mode is selected
Kojto 112:6f327212ef96 83 This parameter can be a 7-bit address. */
Kojto 112:6f327212ef96 84
Kojto 112:6f327212ef96 85 uint32_t GeneralCallMode; /*!< Specifies if general call mode is selected.
Kojto 112:6f327212ef96 86 This parameter can be a value of @ref I2C_general_call_addressing_mode */
Kojto 112:6f327212ef96 87
Kojto 112:6f327212ef96 88 uint32_t NoStretchMode; /*!< Specifies if nostretch mode is selected.
Kojto 112:6f327212ef96 89 This parameter can be a value of @ref I2C_nostretch_mode */
Kojto 112:6f327212ef96 90
Kojto 112:6f327212ef96 91 }I2C_InitTypeDef;
Kojto 112:6f327212ef96 92
Kojto 112:6f327212ef96 93 /**
Kojto 112:6f327212ef96 94 * @brief HAL State structures definition
Kojto 112:6f327212ef96 95 */
Kojto 112:6f327212ef96 96 typedef enum
Kojto 112:6f327212ef96 97 {
Kojto 112:6f327212ef96 98 HAL_I2C_STATE_RESET = 0x00, /*!< I2C not yet initialized or disabled */
Kojto 112:6f327212ef96 99 HAL_I2C_STATE_READY = 0x01, /*!< I2C initialized and ready for use */
Kojto 112:6f327212ef96 100 HAL_I2C_STATE_BUSY = 0x02, /*!< I2C internal process is ongoing */
Kojto 112:6f327212ef96 101 HAL_I2C_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
Kojto 112:6f327212ef96 102 HAL_I2C_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
Kojto 112:6f327212ef96 103 HAL_I2C_STATE_MEM_BUSY_TX = 0x32, /*!< Memory Data Transmission process is ongoing */
Kojto 112:6f327212ef96 104 HAL_I2C_STATE_MEM_BUSY_RX = 0x42, /*!< Memory Data Reception process is ongoing */
Kojto 112:6f327212ef96 105 HAL_I2C_STATE_TIMEOUT = 0x03, /*!< I2C timeout state */
Kojto 112:6f327212ef96 106 HAL_I2C_STATE_ERROR = 0x04 /*!< I2C error state */
Kojto 112:6f327212ef96 107
Kojto 112:6f327212ef96 108 }HAL_I2C_StateTypeDef;
Kojto 112:6f327212ef96 109
Kojto 112:6f327212ef96 110 /**
Kojto 112:6f327212ef96 111 * @brief HAL I2C Error Code structure definition
Kojto 112:6f327212ef96 112 */
Kojto 112:6f327212ef96 113 typedef enum
Kojto 112:6f327212ef96 114 {
Kojto 112:6f327212ef96 115 HAL_I2C_ERROR_NONE = 0x00, /*!< No error */
Kojto 112:6f327212ef96 116 HAL_I2C_ERROR_BERR = 0x01, /*!< BERR error */
Kojto 112:6f327212ef96 117 HAL_I2C_ERROR_ARLO = 0x02, /*!< ARLO error */
Kojto 112:6f327212ef96 118 HAL_I2C_ERROR_AF = 0x04, /*!< AF error */
Kojto 112:6f327212ef96 119 HAL_I2C_ERROR_OVR = 0x08, /*!< OVR error */
Kojto 112:6f327212ef96 120 HAL_I2C_ERROR_DMA = 0x10, /*!< DMA transfer error */
Kojto 112:6f327212ef96 121 HAL_I2C_ERROR_TIMEOUT = 0x20 /*!< Timeout error */
Kojto 112:6f327212ef96 122
Kojto 112:6f327212ef96 123 }HAL_I2C_ErrorTypeDef;
Kojto 112:6f327212ef96 124
Kojto 112:6f327212ef96 125 /**
Kojto 112:6f327212ef96 126 * @brief I2C handle Structure definition
Kojto 112:6f327212ef96 127 */
Kojto 112:6f327212ef96 128 typedef struct
Kojto 112:6f327212ef96 129 {
Kojto 112:6f327212ef96 130 I2C_TypeDef *Instance; /*!< I2C registers base address */
Kojto 112:6f327212ef96 131
Kojto 112:6f327212ef96 132 I2C_InitTypeDef Init; /*!< I2C communication parameters */
Kojto 112:6f327212ef96 133
Kojto 112:6f327212ef96 134 uint8_t *pBuffPtr; /*!< Pointer to I2C transfer buffer */
Kojto 112:6f327212ef96 135
Kojto 112:6f327212ef96 136 uint16_t XferSize; /*!< I2C transfer size */
Kojto 112:6f327212ef96 137
Kojto 112:6f327212ef96 138 __IO uint16_t XferCount; /*!< I2C transfer counter */
Kojto 112:6f327212ef96 139
Kojto 112:6f327212ef96 140 DMA_HandleTypeDef *hdmatx; /*!< I2C Tx DMA handle parameters */
Kojto 112:6f327212ef96 141
Kojto 112:6f327212ef96 142 DMA_HandleTypeDef *hdmarx; /*!< I2C Rx DMA handle parameters */
Kojto 112:6f327212ef96 143
Kojto 112:6f327212ef96 144 HAL_LockTypeDef Lock; /*!< I2C locking object */
Kojto 112:6f327212ef96 145
Kojto 112:6f327212ef96 146 __IO HAL_I2C_StateTypeDef State; /*!< I2C communication state */
Kojto 112:6f327212ef96 147
Kojto 112:6f327212ef96 148 __IO HAL_I2C_ErrorTypeDef ErrorCode; /* I2C Error code */
Kojto 112:6f327212ef96 149
Kojto 112:6f327212ef96 150 }I2C_HandleTypeDef;
Kojto 112:6f327212ef96 151 /**
Kojto 112:6f327212ef96 152 * @}
Kojto 112:6f327212ef96 153 */
Kojto 112:6f327212ef96 154
Kojto 112:6f327212ef96 155
Kojto 112:6f327212ef96 156 /* Exported constants --------------------------------------------------------*/
Kojto 112:6f327212ef96 157
Kojto 112:6f327212ef96 158 /** @defgroup I2C_Exported_Constants I2C Exported Constants
Kojto 112:6f327212ef96 159 * @{
Kojto 112:6f327212ef96 160 */
Kojto 112:6f327212ef96 161
Kojto 112:6f327212ef96 162 /** @defgroup I2C_duty_cycle_in_fast_mode I2C_duty_cycle_in_fast_mode
Kojto 112:6f327212ef96 163 * @{
Kojto 112:6f327212ef96 164 */
Kojto 112:6f327212ef96 165 #define I2C_DUTYCYCLE_2 ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 166 #define I2C_DUTYCYCLE_16_9 I2C_CCR_DUTY
Kojto 112:6f327212ef96 167
Kojto 112:6f327212ef96 168 #define IS_I2C_DUTY_CYCLE(CYCLE) (((CYCLE) == I2C_DUTYCYCLE_2) || \
Kojto 112:6f327212ef96 169 ((CYCLE) == I2C_DUTYCYCLE_16_9))
Kojto 112:6f327212ef96 170 /**
Kojto 112:6f327212ef96 171 * @}
Kojto 112:6f327212ef96 172 */
Kojto 112:6f327212ef96 173
Kojto 112:6f327212ef96 174 /** @defgroup I2C_addressing_mode I2C_addressing_mode
Kojto 112:6f327212ef96 175 * @{
Kojto 112:6f327212ef96 176 */
Kojto 112:6f327212ef96 177 #define I2C_ADDRESSINGMODE_7BIT ((uint32_t)0x00004000)
Kojto 112:6f327212ef96 178 #define I2C_ADDRESSINGMODE_10BIT (I2C_OAR1_ADDMODE | ((uint32_t)0x00004000))
Kojto 112:6f327212ef96 179
Kojto 112:6f327212ef96 180 #define IS_I2C_ADDRESSING_MODE(ADDRESS) (((ADDRESS) == I2C_ADDRESSINGMODE_7BIT) || \
Kojto 112:6f327212ef96 181 ((ADDRESS) == I2C_ADDRESSINGMODE_10BIT))
Kojto 112:6f327212ef96 182 /**
Kojto 112:6f327212ef96 183 * @}
Kojto 112:6f327212ef96 184 */
Kojto 112:6f327212ef96 185
Kojto 112:6f327212ef96 186 /** @defgroup I2C_dual_addressing_mode I2C_dual_addressing_mode
Kojto 112:6f327212ef96 187 * @{
Kojto 112:6f327212ef96 188 */
Kojto 112:6f327212ef96 189 #define I2C_DUALADDRESS_DISABLED ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 190 #define I2C_DUALADDRESS_ENABLED I2C_OAR2_ENDUAL
Kojto 112:6f327212ef96 191
Kojto 112:6f327212ef96 192 #define IS_I2C_DUAL_ADDRESS(ADDRESS) (((ADDRESS) == I2C_DUALADDRESS_DISABLED) || \
Kojto 112:6f327212ef96 193 ((ADDRESS) == I2C_DUALADDRESS_ENABLED))
Kojto 112:6f327212ef96 194 /**
Kojto 112:6f327212ef96 195 * @}
Kojto 112:6f327212ef96 196 */
Kojto 112:6f327212ef96 197
Kojto 112:6f327212ef96 198 /** @defgroup I2C_general_call_addressing_mode I2C_general_call_addressing_mode
Kojto 112:6f327212ef96 199 * @{
Kojto 112:6f327212ef96 200 */
Kojto 112:6f327212ef96 201 #define I2C_GENERALCALL_DISABLED ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 202 #define I2C_GENERALCALL_ENABLED I2C_CR1_ENGC
Kojto 112:6f327212ef96 203
Kojto 112:6f327212ef96 204 #define IS_I2C_GENERAL_CALL(CALL) (((CALL) == I2C_GENERALCALL_DISABLED) || \
Kojto 112:6f327212ef96 205 ((CALL) == I2C_GENERALCALL_ENABLED))
Kojto 112:6f327212ef96 206 /**
Kojto 112:6f327212ef96 207 * @}
Kojto 112:6f327212ef96 208 */
Kojto 112:6f327212ef96 209
Kojto 112:6f327212ef96 210 /** @defgroup I2C_nostretch_mode I2C_nostretch_mode
Kojto 112:6f327212ef96 211 * @{
Kojto 112:6f327212ef96 212 */
Kojto 112:6f327212ef96 213 #define I2C_NOSTRETCH_DISABLED ((uint32_t)0x00000000)
Kojto 112:6f327212ef96 214 #define I2C_NOSTRETCH_ENABLED I2C_CR1_NOSTRETCH
Kojto 112:6f327212ef96 215
Kojto 112:6f327212ef96 216 #define IS_I2C_NO_STRETCH(STRETCH) (((STRETCH) == I2C_NOSTRETCH_DISABLED) || \
Kojto 112:6f327212ef96 217 ((STRETCH) == I2C_NOSTRETCH_ENABLED))
Kojto 112:6f327212ef96 218 /**
Kojto 112:6f327212ef96 219 * @}
Kojto 112:6f327212ef96 220 */
Kojto 112:6f327212ef96 221
Kojto 112:6f327212ef96 222 /** @defgroup I2C_Memory_Address_Size I2C_Memory_Address_Size
Kojto 112:6f327212ef96 223 * @{
Kojto 112:6f327212ef96 224 */
Kojto 112:6f327212ef96 225 #define I2C_MEMADD_SIZE_8BIT ((uint32_t)0x00000001)
Kojto 112:6f327212ef96 226 #define I2C_MEMADD_SIZE_16BIT ((uint32_t)0x00000010)
Kojto 112:6f327212ef96 227
Kojto 112:6f327212ef96 228 #define IS_I2C_MEMADD_SIZE(SIZE) (((SIZE) == I2C_MEMADD_SIZE_8BIT) || \
Kojto 112:6f327212ef96 229 ((SIZE) == I2C_MEMADD_SIZE_16BIT))
Kojto 112:6f327212ef96 230 /**
Kojto 112:6f327212ef96 231 * @}
Kojto 112:6f327212ef96 232 */
Kojto 112:6f327212ef96 233
Kojto 112:6f327212ef96 234 /** @defgroup I2C_Interrupt_configuration_definition I2C_Interrupt_configuration_definition
Kojto 112:6f327212ef96 235 * @{
Kojto 112:6f327212ef96 236 */
Kojto 112:6f327212ef96 237 #define I2C_IT_BUF I2C_CR2_ITBUFEN
Kojto 112:6f327212ef96 238 #define I2C_IT_EVT I2C_CR2_ITEVTEN
Kojto 112:6f327212ef96 239 #define I2C_IT_ERR I2C_CR2_ITERREN
Kojto 112:6f327212ef96 240 /**
Kojto 112:6f327212ef96 241 * @}
Kojto 112:6f327212ef96 242 */
Kojto 112:6f327212ef96 243
Kojto 112:6f327212ef96 244 /** @defgroup I2C_Flag_definition I2C_Flag_definition
Kojto 112:6f327212ef96 245 * @{
Kojto 112:6f327212ef96 246 */
Kojto 112:6f327212ef96 247 #define I2C_FLAG_OVR ((uint32_t)(1 << 16 | I2C_SR1_OVR))
Kojto 112:6f327212ef96 248 #define I2C_FLAG_AF ((uint32_t)(1 << 16 | I2C_SR1_AF))
Kojto 112:6f327212ef96 249 #define I2C_FLAG_ARLO ((uint32_t)(1 << 16 | I2C_SR1_ARLO))
Kojto 112:6f327212ef96 250 #define I2C_FLAG_BERR ((uint32_t)(1 << 16 | I2C_SR1_BERR))
Kojto 112:6f327212ef96 251 #define I2C_FLAG_TXE ((uint32_t)(1 << 16 | I2C_SR1_TXE))
Kojto 112:6f327212ef96 252 #define I2C_FLAG_RXNE ((uint32_t)(1 << 16 | I2C_SR1_RXNE))
Kojto 112:6f327212ef96 253 #define I2C_FLAG_STOPF ((uint32_t)(1 << 16 | I2C_SR1_STOPF))
Kojto 112:6f327212ef96 254 #define I2C_FLAG_ADD10 ((uint32_t)(1 << 16 | I2C_SR1_ADD10))
Kojto 112:6f327212ef96 255 #define I2C_FLAG_BTF ((uint32_t)(1 << 16 | I2C_SR1_BTF))
Kojto 112:6f327212ef96 256 #define I2C_FLAG_ADDR ((uint32_t)(1 << 16 | I2C_SR1_ADDR))
Kojto 112:6f327212ef96 257 #define I2C_FLAG_SB ((uint32_t)(1 << 16 | I2C_SR1_SB))
Kojto 112:6f327212ef96 258 #define I2C_FLAG_DUALF ((uint32_t)(2 << 16 | I2C_SR2_DUALF))
Kojto 112:6f327212ef96 259 #define I2C_FLAG_GENCALL ((uint32_t)(2 << 16 | I2C_SR2_GENCALL))
Kojto 112:6f327212ef96 260 #define I2C_FLAG_TRA ((uint32_t)(2 << 16 | I2C_SR2_TRA))
Kojto 112:6f327212ef96 261 #define I2C_FLAG_BUSY ((uint32_t)(2 << 16 | I2C_SR2_BUSY))
Kojto 112:6f327212ef96 262 #define I2C_FLAG_MSL ((uint32_t)(2 << 16 | I2C_SR2_MSL))
Kojto 112:6f327212ef96 263
Kojto 112:6f327212ef96 264
Kojto 112:6f327212ef96 265 #define I2C_FLAG_MASK ((uint32_t)0x0000FFFF)
Kojto 112:6f327212ef96 266
Kojto 112:6f327212ef96 267 /**
Kojto 112:6f327212ef96 268 * @}
Kojto 112:6f327212ef96 269 */
Kojto 112:6f327212ef96 270
Kojto 112:6f327212ef96 271 /** @defgroup I2C_Clock_Speed_definition I2C_Clock_Speed_definition
Kojto 112:6f327212ef96 272 * @{
Kojto 112:6f327212ef96 273 */
Kojto 112:6f327212ef96 274 #define IS_I2C_CLOCK_SPEED(SPEED) (((SPEED) > 0) && ((SPEED) <= 400000))
Kojto 112:6f327212ef96 275 /**
Kojto 112:6f327212ef96 276 * @}
Kojto 112:6f327212ef96 277 */
Kojto 112:6f327212ef96 278
Kojto 112:6f327212ef96 279 /** @defgroup I2C_Own_Address1_definition I2C_Own_Address1_definition
Kojto 112:6f327212ef96 280 * @{
Kojto 112:6f327212ef96 281 */
Kojto 112:6f327212ef96 282 #define IS_I2C_OWN_ADDRESS1(ADDRESS1) (((ADDRESS1) & (uint32_t)(0xFFFFFC00)) == 0)
Kojto 112:6f327212ef96 283 /**
Kojto 112:6f327212ef96 284 * @}
Kojto 112:6f327212ef96 285 */
Kojto 112:6f327212ef96 286
Kojto 112:6f327212ef96 287 /** @defgroup I2C_Own_Address2_definition I2C_Own_Address2_definition
Kojto 112:6f327212ef96 288 * @{
Kojto 112:6f327212ef96 289 */
Kojto 112:6f327212ef96 290 #define IS_I2C_OWN_ADDRESS2(ADDRESS2) (((ADDRESS2) & (uint32_t)(0xFFFFFF01)) == 0)
Kojto 112:6f327212ef96 291 /**
Kojto 112:6f327212ef96 292 * @}
Kojto 112:6f327212ef96 293 */
Kojto 112:6f327212ef96 294
Kojto 112:6f327212ef96 295
Kojto 112:6f327212ef96 296 /**
Kojto 112:6f327212ef96 297 * @}
Kojto 112:6f327212ef96 298 */
Kojto 112:6f327212ef96 299
Kojto 112:6f327212ef96 300 /* Exported macro ------------------------------------------------------------*/
Kojto 112:6f327212ef96 301 /** @defgroup I2C_Exported_Macros I2C Exported Macros
Kojto 112:6f327212ef96 302 * @{
Kojto 112:6f327212ef96 303 */
Kojto 112:6f327212ef96 304
Kojto 112:6f327212ef96 305 /** @brief Reset I2C handle state
Kojto 112:6f327212ef96 306 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 307 * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
Kojto 112:6f327212ef96 308 * @retval None
Kojto 112:6f327212ef96 309 */
Kojto 112:6f327212ef96 310 #define __HAL_I2C_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2C_STATE_RESET)
Kojto 112:6f327212ef96 311
Kojto 112:6f327212ef96 312 /** @brief Enable or disable the specified I2C interrupts.
Kojto 112:6f327212ef96 313 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 314 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 315 * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
Kojto 112:6f327212ef96 316 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 317 * @arg I2C_IT_BUF: Buffer interrupt enable
Kojto 112:6f327212ef96 318 * @arg I2C_IT_EVT: Event interrupt enable
Kojto 112:6f327212ef96 319 * @arg I2C_IT_ERR: Error interrupt enable
Kojto 112:6f327212ef96 320 * @retval None
Kojto 112:6f327212ef96 321 */
Kojto 112:6f327212ef96 322
Kojto 112:6f327212ef96 323 #define __HAL_I2C_ENABLE_IT(__HANDLE__, __INTERRUPT__) SET_BIT((__HANDLE__)->Instance->CR2,(__INTERRUPT__))
Kojto 112:6f327212ef96 324 #define __HAL_I2C_DISABLE_IT(__HANDLE__, __INTERRUPT__) CLEAR_BIT((__HANDLE__)->Instance->CR2, (__INTERRUPT__))
Kojto 112:6f327212ef96 325
Kojto 112:6f327212ef96 326 /** @brief Checks if the specified I2C interrupt source is enabled or disabled.
Kojto 112:6f327212ef96 327 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 328 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 329 * @param __INTERRUPT__: specifies the I2C interrupt source to check.
Kojto 112:6f327212ef96 330 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 331 * @arg I2C_IT_BUF: Buffer interrupt enable
Kojto 112:6f327212ef96 332 * @arg I2C_IT_EVT: Event interrupt enable
Kojto 112:6f327212ef96 333 * @arg I2C_IT_ERR: Error interrupt enable
Kojto 112:6f327212ef96 334 * @retval The new state of __INTERRUPT__ (TRUE or FALSE).
Kojto 112:6f327212ef96 335 */
Kojto 112:6f327212ef96 336 #define __HAL_I2C_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
Kojto 112:6f327212ef96 337
Kojto 112:6f327212ef96 338 /** @brief Checks whether the specified I2C flag is set or not.
Kojto 112:6f327212ef96 339 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 340 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 341 * @param __FLAG__: specifies the flag to check.
Kojto 112:6f327212ef96 342 * This parameter can be one of the following values:
Kojto 112:6f327212ef96 343 * @arg I2C_FLAG_OVR: Overrun/Underrun flag
Kojto 112:6f327212ef96 344 * @arg I2C_FLAG_AF: Acknowledge failure flag
Kojto 112:6f327212ef96 345 * @arg I2C_FLAG_ARLO: Arbitration lost flag
Kojto 112:6f327212ef96 346 * @arg I2C_FLAG_BERR: Bus error flag
Kojto 112:6f327212ef96 347 * @arg I2C_FLAG_TXE: Data register empty flag
Kojto 112:6f327212ef96 348 * @arg I2C_FLAG_RXNE: Data register not empty flag
Kojto 112:6f327212ef96 349 * @arg I2C_FLAG_STOPF: Stop detection flag
Kojto 112:6f327212ef96 350 * @arg I2C_FLAG_ADD10: 10-bit header sent flag
Kojto 112:6f327212ef96 351 * @arg I2C_FLAG_BTF: Byte transfer finished flag
Kojto 112:6f327212ef96 352 * @arg I2C_FLAG_ADDR: Address sent flag
Kojto 112:6f327212ef96 353 * Address matched flag
Kojto 112:6f327212ef96 354 * @arg I2C_FLAG_SB: Start bit flag
Kojto 112:6f327212ef96 355 * @arg I2C_FLAG_DUALF: Dual flag
Kojto 112:6f327212ef96 356 * @arg I2C_FLAG_GENCALL: General call header flag
Kojto 112:6f327212ef96 357 * @arg I2C_FLAG_TRA: Transmitter/Receiver flag
Kojto 112:6f327212ef96 358 * @arg I2C_FLAG_BUSY: Bus busy flag
Kojto 112:6f327212ef96 359 * @arg I2C_FLAG_MSL: Master/Slave flag
Kojto 112:6f327212ef96 360 * @retval The new state of __FLAG__ (TRUE or FALSE).
Kojto 112:6f327212ef96 361 */
Kojto 112:6f327212ef96 362 #define __HAL_I2C_GET_FLAG(__HANDLE__, __FLAG__) ((((uint8_t)((__FLAG__) >> 16)) == 0x01)?((((__HANDLE__)->Instance->SR1) & ((__FLAG__) & I2C_FLAG_MASK)) == ((__FLAG__) & I2C_FLAG_MASK)): \
Kojto 112:6f327212ef96 363 ((((__HANDLE__)->Instance->SR2) & ((__FLAG__) & I2C_FLAG_MASK)) == ((__FLAG__) & I2C_FLAG_MASK)))
Kojto 112:6f327212ef96 364
Kojto 112:6f327212ef96 365 /** @brief Clears the I2C pending flags which are cleared by writing 0 in a specific bit.
Kojto 112:6f327212ef96 366 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 367 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 368 * @param __FLAG__: specifies the flag to clear.
Kojto 112:6f327212ef96 369 * This parameter can be any combination of the following values:
Kojto 112:6f327212ef96 370 * @arg I2C_FLAG_OVR: Overrun/Underrun flag (Slave mode)
Kojto 112:6f327212ef96 371 * @arg I2C_FLAG_AF: Acknowledge failure flag
Kojto 112:6f327212ef96 372 * @arg I2C_FLAG_ARLO: Arbitration lost flag (Master mode)
Kojto 112:6f327212ef96 373 * @arg I2C_FLAG_BERR: Bus error flag
Kojto 112:6f327212ef96 374 * @retval None
Kojto 112:6f327212ef96 375 */
Kojto 112:6f327212ef96 376 #define __HAL_I2C_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR1 = ~((__FLAG__) & I2C_FLAG_MASK))
Kojto 112:6f327212ef96 377
Kojto 112:6f327212ef96 378 /** @brief Clears the I2C ADDR pending flag.
Kojto 112:6f327212ef96 379 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 380 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 381 * @retval None
Kojto 112:6f327212ef96 382 */
Kojto 112:6f327212ef96 383
Kojto 112:6f327212ef96 384 #define __HAL_I2C_CLEAR_ADDRFLAG(__HANDLE__) do{(__HANDLE__)->Instance->SR1;\
Kojto 112:6f327212ef96 385 (__HANDLE__)->Instance->SR2;}while(0)
Kojto 112:6f327212ef96 386
Kojto 112:6f327212ef96 387 /** @brief Clears the I2C STOPF pending flag.
Kojto 112:6f327212ef96 388 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 389 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 390 * @retval None
Kojto 112:6f327212ef96 391 */
Kojto 112:6f327212ef96 392 #define __HAL_I2C_CLEAR_STOPFLAG(__HANDLE__) do{(__HANDLE__)->Instance->SR1;\
Kojto 112:6f327212ef96 393 SET_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE);}while(0)
Kojto 112:6f327212ef96 394
Kojto 112:6f327212ef96 395 /** @brief Enable the I2C peripheral.
Kojto 112:6f327212ef96 396 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 397 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 398 * @retval None
Kojto 112:6f327212ef96 399 */
Kojto 112:6f327212ef96 400 #define __HAL_I2C_ENABLE(__HANDLE__) SET_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE)
Kojto 112:6f327212ef96 401
Kojto 112:6f327212ef96 402 /** @brief Disable the I2C peripheral.
Kojto 112:6f327212ef96 403 * @param __HANDLE__: specifies the I2C Handle.
Kojto 112:6f327212ef96 404 * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
Kojto 112:6f327212ef96 405 * @retval None
Kojto 112:6f327212ef96 406 */
Kojto 112:6f327212ef96 407 #define __HAL_I2C_DISABLE(__HANDLE__) CLEAR_BIT((__HANDLE__)->Instance->CR1, I2C_CR1_PE)
Kojto 112:6f327212ef96 408
Kojto 112:6f327212ef96 409 /**
Kojto 112:6f327212ef96 410 * @}
Kojto 112:6f327212ef96 411 */
Kojto 112:6f327212ef96 412
Kojto 112:6f327212ef96 413 /** @defgroup I2C_Private_Macros I2C Private Macros
Kojto 112:6f327212ef96 414 * @{
Kojto 112:6f327212ef96 415 */
Kojto 112:6f327212ef96 416
Kojto 112:6f327212ef96 417 #define I2C_FREQRANGE(__PCLK__) ((__PCLK__)/1000000)
Kojto 112:6f327212ef96 418 #define I2C_RISE_TIME(__FREQRANGE__, __SPEED__) (((__SPEED__) <= 100000) ? ((__FREQRANGE__) + 1) : ((((__FREQRANGE__) * 300) / 1000) + 1))
Kojto 112:6f327212ef96 419 #define I2C_SPEED_STANDARD(__PCLK__, __SPEED__) (((((__PCLK__)/((__SPEED__) << 1)) & I2C_CCR_CCR) < 4)? 4:((__PCLK__) / ((__SPEED__) << 1)))
Kojto 112:6f327212ef96 420 #define I2C_SPEED_FAST(__PCLK__, __SPEED__, __DUTYCYCLE__) (((__DUTYCYCLE__) == I2C_DUTYCYCLE_2)? ((__PCLK__) / ((__SPEED__) * 3)) : (((__PCLK__) / ((__SPEED__) * 25)) | I2C_DUTYCYCLE_16_9))
Kojto 112:6f327212ef96 421 #define I2C_SPEED(__PCLK__, __SPEED__, __DUTYCYCLE__) (((__SPEED__) <= 100000)? (I2C_SPEED_STANDARD((__PCLK__), (__SPEED__))) : \
Kojto 112:6f327212ef96 422 ((I2C_SPEED_FAST((__PCLK__), (__SPEED__), (__DUTYCYCLE__)) & I2C_CCR_CCR) == 0)? 1 : \
Kojto 112:6f327212ef96 423 ((I2C_SPEED_FAST((__PCLK__), (__SPEED__), (__DUTYCYCLE__))) | I2C_CCR_FS))
Kojto 112:6f327212ef96 424
Kojto 112:6f327212ef96 425 #define I2C_7BIT_ADD_WRITE(__ADDRESS__) ((uint8_t)((__ADDRESS__) & (~I2C_OAR1_ADD0)))
Kojto 112:6f327212ef96 426 #define I2C_7BIT_ADD_READ(__ADDRESS__) ((uint8_t)((__ADDRESS__) | I2C_OAR1_ADD0))
Kojto 112:6f327212ef96 427
Kojto 112:6f327212ef96 428 #define I2C_10BIT_ADDRESS(__ADDRESS__) ((uint8_t)((uint16_t)((__ADDRESS__) & (uint16_t)(0x00FF))))
Kojto 112:6f327212ef96 429 #define I2C_10BIT_HEADER_WRITE(__ADDRESS__) ((uint8_t)((uint16_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0x0300))) >> 7) | (uint16_t)(0xF0))))
Kojto 112:6f327212ef96 430 #define I2C_10BIT_HEADER_READ(__ADDRESS__) ((uint8_t)((uint16_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0x0300))) >> 7) | (uint16_t)(0xF1))))
Kojto 112:6f327212ef96 431
Kojto 112:6f327212ef96 432 #define I2C_MEM_ADD_MSB(__ADDRESS__) ((uint8_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0xFF00))) >> 8)))
Kojto 112:6f327212ef96 433 #define I2C_MEM_ADD_LSB(__ADDRESS__) ((uint8_t)((uint16_t)((__ADDRESS__) & (uint16_t)(0x00FF))))
Kojto 112:6f327212ef96 434
Kojto 112:6f327212ef96 435 /**
Kojto 112:6f327212ef96 436 * @}
Kojto 112:6f327212ef96 437 */
Kojto 112:6f327212ef96 438
Kojto 112:6f327212ef96 439
Kojto 112:6f327212ef96 440 /* Exported functions --------------------------------------------------------*/
Kojto 112:6f327212ef96 441 /** @addtogroup I2C_Exported_Functions
Kojto 112:6f327212ef96 442 * @{
Kojto 112:6f327212ef96 443 */
Kojto 112:6f327212ef96 444
Kojto 112:6f327212ef96 445 /* Initialization/de-initialization functions **********************************/
Kojto 112:6f327212ef96 446 /** @addtogroup I2C_Exported_Functions_Group1
Kojto 112:6f327212ef96 447 * @{
Kojto 112:6f327212ef96 448 */
Kojto 112:6f327212ef96 449
Kojto 112:6f327212ef96 450 HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 451 HAL_StatusTypeDef HAL_I2C_DeInit (I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 452 void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 453 void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 454
Kojto 112:6f327212ef96 455 /**
Kojto 112:6f327212ef96 456 * @}
Kojto 112:6f327212ef96 457 */
Kojto 112:6f327212ef96 458
Kojto 112:6f327212ef96 459
Kojto 112:6f327212ef96 460 /* I/O operation functions *****************************************************/
Kojto 112:6f327212ef96 461 /** @addtogroup I2C_Exported_Functions_Group2
Kojto 112:6f327212ef96 462 * @{
Kojto 112:6f327212ef96 463 */
Kojto 112:6f327212ef96 464
Kojto 112:6f327212ef96 465 /******* Blocking mode: Polling */
Kojto 112:6f327212ef96 466 HAL_StatusTypeDef HAL_I2C_Master_Transmit(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 467 HAL_StatusTypeDef HAL_I2C_Master_Receive(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 468 HAL_StatusTypeDef HAL_I2C_Slave_Transmit(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 469 HAL_StatusTypeDef HAL_I2C_Slave_Receive(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 470 HAL_StatusTypeDef HAL_I2C_Mem_Write(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 471 HAL_StatusTypeDef HAL_I2C_Mem_Read(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size, uint32_t Timeout);
Kojto 112:6f327212ef96 472 HAL_StatusTypeDef HAL_I2C_IsDeviceReady(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout);
Kojto 112:6f327212ef96 473
Kojto 112:6f327212ef96 474 /******* Non-Blocking mode: Interrupt */
Kojto 112:6f327212ef96 475 HAL_StatusTypeDef HAL_I2C_Master_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 476 HAL_StatusTypeDef HAL_I2C_Master_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 477 HAL_StatusTypeDef HAL_I2C_Slave_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 478 HAL_StatusTypeDef HAL_I2C_Slave_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 479 HAL_StatusTypeDef HAL_I2C_Mem_Write_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 480 HAL_StatusTypeDef HAL_I2C_Mem_Read_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 481
Kojto 112:6f327212ef96 482 /******* Non-Blocking mode: DMA */
Kojto 112:6f327212ef96 483 HAL_StatusTypeDef HAL_I2C_Master_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 484 HAL_StatusTypeDef HAL_I2C_Master_Receive_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 485 HAL_StatusTypeDef HAL_I2C_Slave_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 486 HAL_StatusTypeDef HAL_I2C_Slave_Receive_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 487 HAL_StatusTypeDef HAL_I2C_Mem_Write_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 488 HAL_StatusTypeDef HAL_I2C_Mem_Read_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint16_t MemAddress, uint16_t MemAddSize, uint8_t *pData, uint16_t Size);
Kojto 112:6f327212ef96 489
Kojto 112:6f327212ef96 490 /******* I2C IRQHandler and Callbacks used in non blocking modes (Interrupt and DMA) */
Kojto 112:6f327212ef96 491 void HAL_I2C_EV_IRQHandler(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 492 void HAL_I2C_ER_IRQHandler(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 493 void HAL_I2C_MasterTxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 494 void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 495 void HAL_I2C_SlaveTxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 496 void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 497 void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 498 void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 499 void HAL_I2C_ErrorCallback(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 500
Kojto 112:6f327212ef96 501 /**
Kojto 112:6f327212ef96 502 * @}
Kojto 112:6f327212ef96 503 */
Kojto 112:6f327212ef96 504
Kojto 112:6f327212ef96 505
Kojto 112:6f327212ef96 506 /* Peripheral Control and State functions **************************************/
Kojto 112:6f327212ef96 507 /** @addtogroup I2C_Exported_Functions_Group3
Kojto 112:6f327212ef96 508 * @{
Kojto 112:6f327212ef96 509 */
Kojto 112:6f327212ef96 510
Kojto 112:6f327212ef96 511 HAL_I2C_StateTypeDef HAL_I2C_GetState(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 512 uint32_t HAL_I2C_GetError(I2C_HandleTypeDef *hi2c);
Kojto 112:6f327212ef96 513 /**
Kojto 112:6f327212ef96 514 * @}
Kojto 112:6f327212ef96 515 */
Kojto 112:6f327212ef96 516
Kojto 112:6f327212ef96 517 /**
Kojto 112:6f327212ef96 518 * @}
Kojto 112:6f327212ef96 519 */
Kojto 112:6f327212ef96 520
Kojto 112:6f327212ef96 521
Kojto 112:6f327212ef96 522
Kojto 112:6f327212ef96 523 /**
Kojto 112:6f327212ef96 524 * @}
Kojto 112:6f327212ef96 525 */
Kojto 112:6f327212ef96 526
Kojto 112:6f327212ef96 527 /**
Kojto 112:6f327212ef96 528 * @}
Kojto 112:6f327212ef96 529 */
Kojto 112:6f327212ef96 530
Kojto 112:6f327212ef96 531 #ifdef __cplusplus
Kojto 112:6f327212ef96 532 }
Kojto 112:6f327212ef96 533 #endif
Kojto 112:6f327212ef96 534
Kojto 112:6f327212ef96 535
Kojto 112:6f327212ef96 536 #endif /* __STM32L1xx_HAL_I2C_H */
Kojto 112:6f327212ef96 537
Kojto 112:6f327212ef96 538 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/