/TARGET_K64F/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/adc/fsl_adc_hal.h substitute line 894 extern } by }

Fork of mbed by mbed official

Committer:
fblanc
Date:
Fri Dec 05 15:42:32 2014 +0000
Revision:
93:9dd889aeda0e
Parent:
86:04dd9b1680ae
substitute line 894 extern } by }; /TARGET_K64F/TARGET_Freescale/TARGET_KPSDK_MCUS/TARGET_KPSDK_CODE/hal/adc/fsl_adc_hal.h

Who changed what in which revision?

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