meh

Fork of mbed by mbed official

Committer:
Kojto
Date:
Wed May 13 08:08:21 2015 +0200
Revision:
99:dbbf35b96557
Parent:
92:4fc01daae5a5
Child:
106:ba1f97679dad
Release 99 of the mbed library

Changes:
- new targets - MAXWSNENV, DISCO_L053C8
- STM32F4xx - ST Cube driver
- KSDK mcu - SPI timing fix
- Nordic - update to softdevice s130

Who changed what in which revision?

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