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:
110:165afa46840b
.

Who changed what in which revision?

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