You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

462 lines
22 KiB

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