mbed w/ spi bug fig

Dependents:   display-puck

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Fri Jun 27 07:30:09 2014 +0100
Revision:
242:7074e42da0b2
Parent:
133:d4dda5c437f0
Synchronized with git revision 124ef5e3add9e74a3221347a3fbeea7c8b3cf353

Full URL: https://github.com/mbedmicro/mbed/commit/124ef5e3add9e74a3221347a3fbeea7c8b3cf353/

[DISCO_F407VG] HAL update.

Who changed what in which revision?

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