stm32f4xx_hal_i2c.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_i2c.h
  4. * @author MCD Application Team
  5. * @version V1.6.0
  6. * @date 04-November-2016
  7. * @brief Header file of I2C HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2016 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. /** @defgroup I2C_Exported_Types I2C Exported Types
  53. * @{
  54. */
  55. /**
  56. * @brief I2C Configuration Structure definition
  57. */
  58. typedef struct
  59. {
  60. uint32_t ClockSpeed; /*!< Specifies the clock frequency.
  61. This parameter must be set to a value lower than 400kHz */
  62. uint32_t DutyCycle; /*!< Specifies the I2C fast mode duty cycle.
  63. This parameter can be a value of @ref I2C_duty_cycle_in_fast_mode */
  64. uint32_t OwnAddress1; /*!< Specifies the first device own address.
  65. This parameter can be a 7-bit or 10-bit address. */
  66. uint32_t AddressingMode; /*!< Specifies if 7-bit or 10-bit addressing mode is selected.
  67. This parameter can be a value of @ref I2C_addressing_mode */
  68. uint32_t DualAddressMode; /*!< Specifies if dual addressing mode is selected.
  69. This parameter can be a value of @ref I2C_dual_addressing_mode */
  70. uint32_t OwnAddress2; /*!< Specifies the second device own address if dual addressing mode is selected
  71. This parameter can be a 7-bit address. */
  72. uint32_t GeneralCallMode; /*!< Specifies if general call mode is selected.
  73. This parameter can be a value of @ref I2C_general_call_addressing_mode */
  74. uint32_t NoStretchMode; /*!< Specifies if nostretch mode is selected.
  75. This parameter can be a value of @ref I2C_nostretch_mode */
  76. }I2C_InitTypeDef;
  77. /**
  78. * @brief HAL State structure definition
  79. * @note HAL I2C State value coding follow below described bitmap :
  80. * b7-b6 Error information
  81. * 00 : No Error
  82. * 01 : Abort (Abort user request on going)
  83. * 10 : Timeout
  84. * 11 : Error
  85. * b5 IP initilisation status
  86. * 0 : Reset (IP not initialized)
  87. * 1 : Init done (IP initialized and ready to use. HAL I2C Init function called)
  88. * b4 (not used)
  89. * x : Should be set to 0
  90. * b3
  91. * 0 : Ready or Busy (No Listen mode ongoing)
  92. * 1 : Listen (IP in Address Listen Mode)
  93. * b2 Intrinsic process state
  94. * 0 : Ready
  95. * 1 : Busy (IP busy with some configuration or internal operations)
  96. * b1 Rx state
  97. * 0 : Ready (no Rx operation ongoing)
  98. * 1 : Busy (Rx operation ongoing)
  99. * b0 Tx state
  100. * 0 : Ready (no Tx operation ongoing)
  101. * 1 : Busy (Tx operation ongoing)
  102. */
  103. typedef enum
  104. {
  105. HAL_I2C_STATE_RESET = 0x00U, /*!< Peripheral is not yet Initialized */
  106. HAL_I2C_STATE_READY = 0x20U, /*!< Peripheral Initialized and ready for use */
  107. HAL_I2C_STATE_BUSY = 0x24U, /*!< An internal process is ongoing */
  108. HAL_I2C_STATE_BUSY_TX = 0x21U, /*!< Data Transmission process is ongoing */
  109. HAL_I2C_STATE_BUSY_RX = 0x22U, /*!< Data Reception process is ongoing */
  110. HAL_I2C_STATE_LISTEN = 0x28U, /*!< Address Listen Mode is ongoing */
  111. HAL_I2C_STATE_BUSY_TX_LISTEN = 0x29U, /*!< Address Listen Mode and Data Transmission
  112. process is ongoing */
  113. HAL_I2C_STATE_BUSY_RX_LISTEN = 0x2AU, /*!< Address Listen Mode and Data Reception
  114. process is ongoing */
  115. HAL_I2C_STATE_ABORT = 0x60U, /*!< Abort user request ongoing */
  116. HAL_I2C_STATE_TIMEOUT = 0xA0U, /*!< Timeout state */
  117. HAL_I2C_STATE_ERROR = 0xE0U /*!< Error */
  118. }HAL_I2C_StateTypeDef;
  119. /**
  120. * @brief HAL Mode structure definition
  121. * @note HAL I2C Mode value coding follow below described bitmap :
  122. * b7 (not used)
  123. * x : Should be set to 0
  124. * b6
  125. * 0 : None
  126. * 1 : Memory (HAL I2C communication is in Memory Mode)
  127. * b5
  128. * 0 : None
  129. * 1 : Slave (HAL I2C communication is in Slave Mode)
  130. * b4
  131. * 0 : None
  132. * 1 : Master (HAL I2C communication is in Master Mode)
  133. * b3-b2-b1-b0 (not used)
  134. * xxxx : Should be set to 0000
  135. */
  136. typedef enum
  137. {
  138. HAL_I2C_MODE_NONE = 0x00U, /*!< No I2C communication on going */
  139. HAL_I2C_MODE_MASTER = 0x10U, /*!< I2C communication is in Master Mode */
  140. HAL_I2C_MODE_SLAVE = 0x20U, /*!< I2C communication is in Slave Mode */
  141. HAL_I2C_MODE_MEM = 0x40U /*!< I2C communication is in Memory Mode */
  142. }HAL_I2C_ModeTypeDef;
  143. /**
  144. * @brief I2C handle Structure definition
  145. */
  146. typedef struct
  147. {
  148. I2C_TypeDef *Instance; /*!< I2C registers base address */
  149. I2C_InitTypeDef Init; /*!< I2C communication parameters */
  150. uint8_t *pBuffPtr; /*!< Pointer to I2C transfer buffer */
  151. uint16_t XferSize; /*!< I2C transfer size */
  152. __IO uint16_t XferCount; /*!< I2C transfer counter */
  153. __IO uint32_t XferOptions; /*!< I2C transfer options */
  154. __IO uint32_t PreviousState; /*!< I2C communication Previous state and mode
  155. context for internal usage */
  156. DMA_HandleTypeDef *hdmatx; /*!< I2C Tx DMA handle parameters */
  157. DMA_HandleTypeDef *hdmarx; /*!< I2C Rx DMA handle parameters */
  158. HAL_LockTypeDef Lock; /*!< I2C locking object */
  159. __IO HAL_I2C_StateTypeDef State; /*!< I2C communication state */
  160. __IO HAL_I2C_ModeTypeDef Mode; /*!< I2C communication mode */
  161. __IO uint32_t ErrorCode; /*!< I2C Error code */
  162. __IO uint32_t Devaddress; /*!< I2C Target device address */
  163. __IO uint32_t Memaddress; /*!< I2C Target memory address */
  164. __IO uint32_t MemaddSize; /*!< I2C Target memory address size */
  165. __IO uint32_t EventCount; /*!< I2C Event counter */
  166. }I2C_HandleTypeDef;
  167. /**
  168. * @}
  169. */
  170. /* Exported constants --------------------------------------------------------*/
  171. /** @defgroup I2C_Exported_Constants I2C Exported Constants
  172. * @{
  173. */
  174. /** @defgroup I2C_Error_Code I2C Error Code
  175. * @brief I2C Error Code
  176. * @{
  177. */
  178. #define HAL_I2C_ERROR_NONE ((uint32_t)0x00000000U) /*!< No error */
  179. #define HAL_I2C_ERROR_BERR ((uint32_t)0x00000001U) /*!< BERR error */
  180. #define HAL_I2C_ERROR_ARLO ((uint32_t)0x00000002U) /*!< ARLO error */
  181. #define HAL_I2C_ERROR_AF ((uint32_t)0x00000004U) /*!< AF error */
  182. #define HAL_I2C_ERROR_OVR ((uint32_t)0x00000008U) /*!< OVR error */
  183. #define HAL_I2C_ERROR_DMA ((uint32_t)0x00000010U) /*!< DMA transfer error */
  184. #define HAL_I2C_ERROR_TIMEOUT ((uint32_t)0x00000020U) /*!< Timeout Error */
  185. /**
  186. * @}
  187. */
  188. /** @defgroup I2C_duty_cycle_in_fast_mode I2C duty cycle in fast mode
  189. * @{
  190. */
  191. #define I2C_DUTYCYCLE_2 ((uint32_t)0x00000000U)
  192. #define I2C_DUTYCYCLE_16_9 I2C_CCR_DUTY
  193. /**
  194. * @}
  195. */
  196. /** @defgroup I2C_addressing_mode I2C addressing mode
  197. * @{
  198. */
  199. #define I2C_ADDRESSINGMODE_7BIT ((uint32_t)0x00004000U)
  200. #define I2C_ADDRESSINGMODE_10BIT (I2C_OAR1_ADDMODE | ((uint32_t)0x00004000U))
  201. /**
  202. * @}
  203. */
  204. /** @defgroup I2C_dual_addressing_mode I2C dual addressing mode
  205. * @{
  206. */
  207. #define I2C_DUALADDRESS_DISABLE ((uint32_t)0x00000000U)
  208. #define I2C_DUALADDRESS_ENABLE I2C_OAR2_ENDUAL
  209. /**
  210. * @}
  211. */
  212. /** @defgroup I2C_general_call_addressing_mode I2C general call addressing mode
  213. * @{
  214. */
  215. #define I2C_GENERALCALL_DISABLE ((uint32_t)0x00000000U)
  216. #define I2C_GENERALCALL_ENABLE I2C_CR1_ENGC
  217. /**
  218. * @}
  219. */
  220. /** @defgroup I2C_nostretch_mode I2C nostretch mode
  221. * @{
  222. */
  223. #define I2C_NOSTRETCH_DISABLE ((uint32_t)0x00000000U)
  224. #define I2C_NOSTRETCH_ENABLE I2C_CR1_NOSTRETCH
  225. /**
  226. * @}
  227. */
  228. /** @defgroup I2C_Memory_Address_Size I2C Memory Address Size
  229. * @{
  230. */
  231. #define I2C_MEMADD_SIZE_8BIT ((uint32_t)0x00000001U)
  232. #define I2C_MEMADD_SIZE_16BIT ((uint32_t)0x00000010U)
  233. /**
  234. * @}
  235. */
  236. /** @defgroup I2C_XferDirection_definition I2C XferDirection definition
  237. * @{
  238. */
  239. #define I2C_DIRECTION_RECEIVE ((uint32_t)0x00000000U)
  240. #define I2C_DIRECTION_TRANSMIT ((uint32_t)0x00000001U)
  241. /**
  242. * @}
  243. */
  244. /** @defgroup I2C_XferOptions_definition I2C XferOptions definition
  245. * @{
  246. */
  247. #define I2C_FIRST_FRAME ((uint32_t)0x00000001U)
  248. #define I2C_NEXT_FRAME ((uint32_t)0x00000002U)
  249. #define I2C_FIRST_AND_LAST_FRAME ((uint32_t)0x00000004U)
  250. #define I2C_LAST_FRAME ((uint32_t)0x00000008U)
  251. /**
  252. * @}
  253. */
  254. /** @defgroup I2C_Interrupt_configuration_definition I2C Interrupt configuration definition
  255. * @{
  256. */
  257. #define I2C_IT_BUF I2C_CR2_ITBUFEN
  258. #define I2C_IT_EVT I2C_CR2_ITEVTEN
  259. #define I2C_IT_ERR I2C_CR2_ITERREN
  260. /**
  261. * @}
  262. */
  263. /** @defgroup I2C_Flag_definition I2C Flag definition
  264. * @{
  265. */
  266. #define I2C_FLAG_SMBALERT ((uint32_t)0x00018000U)
  267. #define I2C_FLAG_TIMEOUT ((uint32_t)0x00014000U)
  268. #define I2C_FLAG_PECERR ((uint32_t)0x00011000U)
  269. #define I2C_FLAG_OVR ((uint32_t)0x00010800U)
  270. #define I2C_FLAG_AF ((uint32_t)0x00010400U)
  271. #define I2C_FLAG_ARLO ((uint32_t)0x00010200U)
  272. #define I2C_FLAG_BERR ((uint32_t)0x00010100U)
  273. #define I2C_FLAG_TXE ((uint32_t)0x00010080U)
  274. #define I2C_FLAG_RXNE ((uint32_t)0x00010040U)
  275. #define I2C_FLAG_STOPF ((uint32_t)0x00010010U)
  276. #define I2C_FLAG_ADD10 ((uint32_t)0x00010008U)
  277. #define I2C_FLAG_BTF ((uint32_t)0x00010004U)
  278. #define I2C_FLAG_ADDR ((uint32_t)0x00010002U)
  279. #define I2C_FLAG_SB ((uint32_t)0x00010001U)
  280. #define I2C_FLAG_DUALF ((uint32_t)0x00100080U)
  281. #define I2C_FLAG_SMBHOST ((uint32_t)0x00100040U)
  282. #define I2C_FLAG_SMBDEFAULT ((uint32_t)0x00100020U)
  283. #define I2C_FLAG_GENCALL ((uint32_t)0x00100010U)
  284. #define I2C_FLAG_TRA ((uint32_t)0x00100004U)
  285. #define I2C_FLAG_BUSY ((uint32_t)0x00100002U)
  286. #define I2C_FLAG_MSL ((uint32_t)0x00100001U)
  287. /**
  288. * @}
  289. */
  290. /**
  291. * @}
  292. */
  293. /* Exported macro ------------------------------------------------------------*/
  294. /** @defgroup I2C_Exported_Macros I2C Exported Macros
  295. * @{
  296. */
  297. /** @brief Reset I2C handle state
  298. * @param __HANDLE__: specifies the I2C Handle.
  299. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  300. * @retval None
  301. */
  302. #define __HAL_I2C_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2C_STATE_RESET)
  303. /** @brief Enable or disable the specified I2C interrupts.
  304. * @param __HANDLE__: specifies the I2C Handle.
  305. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  306. * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
  307. * This parameter can be one of the following values:
  308. * @arg I2C_IT_BUF: Buffer interrupt enable
  309. * @arg I2C_IT_EVT: Event interrupt enable
  310. * @arg I2C_IT_ERR: Error interrupt enable
  311. * @retval None
  312. */
  313. #define __HAL_I2C_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 |= (__INTERRUPT__))
  314. #define __HAL_I2C_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 &= (~(__INTERRUPT__)))
  315. /** @brief Checks if the specified I2C interrupt source is enabled or disabled.
  316. * @param __HANDLE__: specifies the I2C Handle.
  317. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  318. * @param __INTERRUPT__: specifies the I2C interrupt source to check.
  319. * This parameter can be one of the following values:
  320. * @arg I2C_IT_BUF: Buffer interrupt enable
  321. * @arg I2C_IT_EVT: Event interrupt enable
  322. * @arg I2C_IT_ERR: Error interrupt enable
  323. * @retval The new state of __INTERRUPT__ (TRUE or FALSE).
  324. */
  325. #define __HAL_I2C_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  326. /** @brief Checks whether the specified I2C flag is set or not.
  327. * @param __HANDLE__: specifies the I2C Handle.
  328. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  329. * @param __FLAG__: specifies the flag to check.
  330. * This parameter can be one of the following values:
  331. * @arg I2C_FLAG_SMBALERT: SMBus Alert flag
  332. * @arg I2C_FLAG_TIMEOUT: Timeout or Tlow error flag
  333. * @arg I2C_FLAG_PECERR: PEC error in reception flag
  334. * @arg I2C_FLAG_OVR: Overrun/Underrun flag
  335. * @arg I2C_FLAG_AF: Acknowledge failure flag
  336. * @arg I2C_FLAG_ARLO: Arbitration lost flag
  337. * @arg I2C_FLAG_BERR: Bus error flag
  338. * @arg I2C_FLAG_TXE: Data register empty flag
  339. * @arg I2C_FLAG_RXNE: Data register not empty flag
  340. * @arg I2C_FLAG_STOPF: Stop detection flag
  341. * @arg I2C_FLAG_ADD10: 10-bit header sent flag
  342. * @arg I2C_FLAG_BTF: Byte transfer finished flag
  343. * @arg I2C_FLAG_ADDR: Address sent flag
  344. * Address matched flag
  345. * @arg I2C_FLAG_SB: Start bit flag
  346. * @arg I2C_FLAG_DUALF: Dual flag
  347. * @arg I2C_FLAG_SMBHOST: SMBus host header
  348. * @arg I2C_FLAG_SMBDEFAULT: SMBus default header
  349. * @arg I2C_FLAG_GENCALL: General call header flag
  350. * @arg I2C_FLAG_TRA: Transmitter/Receiver flag
  351. * @arg I2C_FLAG_BUSY: Bus busy flag
  352. * @arg I2C_FLAG_MSL: Master/Slave flag
  353. * @retval The new state of __FLAG__ (TRUE or FALSE).
  354. */
  355. #define __HAL_I2C_GET_FLAG(__HANDLE__, __FLAG__) ((((uint8_t)((__FLAG__) >> 16U)) == 0x01U)?((((__HANDLE__)->Instance->SR1) & ((__FLAG__) & I2C_FLAG_MASK)) == ((__FLAG__) & I2C_FLAG_MASK)): \
  356. ((((__HANDLE__)->Instance->SR2) & ((__FLAG__) & I2C_FLAG_MASK)) == ((__FLAG__) & I2C_FLAG_MASK)))
  357. /** @brief Clears the I2C pending flags which are cleared by writing 0 in a specific bit.
  358. * @param __HANDLE__: specifies the I2C Handle.
  359. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  360. * @param __FLAG__: specifies the flag to clear.
  361. * This parameter can be any combination of the following values:
  362. * @arg I2C_FLAG_SMBALERT: SMBus Alert flag
  363. * @arg I2C_FLAG_TIMEOUT: Timeout or Tlow error flag
  364. * @arg I2C_FLAG_PECERR: PEC error in reception flag
  365. * @arg I2C_FLAG_OVR: Overrun/Underrun flag (Slave mode)
  366. * @arg I2C_FLAG_AF: Acknowledge failure flag
  367. * @arg I2C_FLAG_ARLO: Arbitration lost flag (Master mode)
  368. * @arg I2C_FLAG_BERR: Bus error flag
  369. * @retval None
  370. */
  371. #define __HAL_I2C_CLEAR_FLAG(__HANDLE__, __FLAG__) ((__HANDLE__)->Instance->SR1 = ~((__FLAG__) & I2C_FLAG_MASK))
  372. /** @brief Clears the I2C ADDR pending flag.
  373. * @param __HANDLE__: specifies the I2C Handle.
  374. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  375. * @retval None
  376. */
  377. #define __HAL_I2C_CLEAR_ADDRFLAG(__HANDLE__) \
  378. do{ \
  379. __IO uint32_t tmpreg = 0x00U; \
  380. tmpreg = (__HANDLE__)->Instance->SR1; \
  381. tmpreg = (__HANDLE__)->Instance->SR2; \
  382. UNUSED(tmpreg); \
  383. } while(0)
  384. /** @brief Clears the I2C STOPF pending flag.
  385. * @param __HANDLE__: specifies the I2C Handle.
  386. * This parameter can be I2C where x: 1, 2, or 3 to select the I2C peripheral.
  387. * @retval None
  388. */
  389. #define __HAL_I2C_CLEAR_STOPFLAG(__HANDLE__) \
  390. do{ \
  391. __IO uint32_t tmpreg = 0x00U; \
  392. tmpreg = (__HANDLE__)->Instance->SR1; \
  393. (__HANDLE__)->Instance->CR1 |= I2C_CR1_PE; \
  394. UNUSED(tmpreg); \
  395. } while(0)
  396. /** @brief Enable the I2C peripheral.
  397. * @param __HANDLE__: specifies the I2C Handle.
  398. * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
  399. * @retval None
  400. */
  401. #define __HAL_I2C_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 |= I2C_CR1_PE)
  402. /** @brief Disable the I2C peripheral.
  403. * @param __HANDLE__: specifies the I2C Handle.
  404. * This parameter can be I2Cx where x: 1 or 2 to select the I2C peripheral.
  405. * @retval None
  406. */
  407. #define __HAL_I2C_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CR1 &= ~I2C_CR1_PE)
  408. /**
  409. * @}
  410. */
  411. /* Include I2C HAL Extension module */
  412. #include "stm32f4xx_hal_i2c_ex.h"
  413. /* Exported functions --------------------------------------------------------*/
  414. /** @addtogroup I2C_Exported_Functions
  415. * @{
  416. */
  417. /** @addtogroup I2C_Exported_Functions_Group1
  418. * @{
  419. */
  420. /* Initialization/de-initialization functions **********************************/
  421. HAL_StatusTypeDef HAL_I2C_Init(I2C_HandleTypeDef *hi2c);
  422. HAL_StatusTypeDef HAL_I2C_DeInit (I2C_HandleTypeDef *hi2c);
  423. void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c);
  424. void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c);
  425. /**
  426. * @}
  427. */
  428. /** @addtogroup I2C_Exported_Functions_Group2
  429. * @{
  430. */
  431. /* I/O operation functions *****************************************************/
  432. /******* Blocking mode: Polling */
  433. HAL_StatusTypeDef HAL_I2C_Master_Transmit(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout);
  434. HAL_StatusTypeDef HAL_I2C_Master_Receive(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t Timeout);
  435. HAL_StatusTypeDef HAL_I2C_Slave_Transmit(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout);
  436. HAL_StatusTypeDef HAL_I2C_Slave_Receive(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t Timeout);
  437. 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);
  438. 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);
  439. HAL_StatusTypeDef HAL_I2C_IsDeviceReady(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint32_t Trials, uint32_t Timeout);
  440. /******* Non-Blocking mode: Interrupt */
  441. HAL_StatusTypeDef HAL_I2C_Master_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
  442. HAL_StatusTypeDef HAL_I2C_Master_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
  443. HAL_StatusTypeDef HAL_I2C_Slave_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
  444. HAL_StatusTypeDef HAL_I2C_Slave_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
  445. 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);
  446. 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);
  447. HAL_StatusTypeDef HAL_I2C_Master_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
  448. HAL_StatusTypeDef HAL_I2C_Master_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
  449. HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Transmit_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
  450. HAL_StatusTypeDef HAL_I2C_Slave_Sequential_Receive_IT(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size, uint32_t XferOptions);
  451. HAL_StatusTypeDef HAL_I2C_Master_Abort_IT(I2C_HandleTypeDef *hi2c, uint16_t DevAddress);
  452. HAL_StatusTypeDef HAL_I2C_EnableListen_IT(I2C_HandleTypeDef *hi2c);
  453. HAL_StatusTypeDef HAL_I2C_DisableListen_IT(I2C_HandleTypeDef *hi2c);
  454. /******* Non-Blocking mode: DMA */
  455. HAL_StatusTypeDef HAL_I2C_Master_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
  456. HAL_StatusTypeDef HAL_I2C_Master_Receive_DMA(I2C_HandleTypeDef *hi2c, uint16_t DevAddress, uint8_t *pData, uint16_t Size);
  457. HAL_StatusTypeDef HAL_I2C_Slave_Transmit_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
  458. HAL_StatusTypeDef HAL_I2C_Slave_Receive_DMA(I2C_HandleTypeDef *hi2c, uint8_t *pData, uint16_t Size);
  459. 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);
  460. 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);
  461. /******* I2C IRQHandler and Callbacks used in non blocking modes (Interrupt and DMA) */
  462. void HAL_I2C_EV_IRQHandler(I2C_HandleTypeDef *hi2c);
  463. void HAL_I2C_ER_IRQHandler(I2C_HandleTypeDef *hi2c);
  464. void HAL_I2C_MasterTxCpltCallback(I2C_HandleTypeDef *hi2c);
  465. void HAL_I2C_MasterRxCpltCallback(I2C_HandleTypeDef *hi2c);
  466. void HAL_I2C_SlaveTxCpltCallback(I2C_HandleTypeDef *hi2c);
  467. void HAL_I2C_SlaveRxCpltCallback(I2C_HandleTypeDef *hi2c);
  468. void HAL_I2C_AddrCallback(I2C_HandleTypeDef *hi2c, uint8_t TransferDirection, uint16_t AddrMatchCode);
  469. void HAL_I2C_ListenCpltCallback(I2C_HandleTypeDef *hi2c);
  470. void HAL_I2C_MemTxCpltCallback(I2C_HandleTypeDef *hi2c);
  471. void HAL_I2C_MemRxCpltCallback(I2C_HandleTypeDef *hi2c);
  472. void HAL_I2C_ErrorCallback(I2C_HandleTypeDef *hi2c);
  473. void HAL_I2C_AbortCpltCallback(I2C_HandleTypeDef *hi2c);
  474. /**
  475. * @}
  476. */
  477. /** @addtogroup I2C_Exported_Functions_Group3
  478. * @{
  479. */
  480. /* Peripheral State, Mode and Errors functions *********************************/
  481. HAL_I2C_StateTypeDef HAL_I2C_GetState(I2C_HandleTypeDef *hi2c);
  482. HAL_I2C_ModeTypeDef HAL_I2C_GetMode(I2C_HandleTypeDef *hi2c);
  483. uint32_t HAL_I2C_GetError(I2C_HandleTypeDef *hi2c);
  484. /**
  485. * @}
  486. */
  487. /**
  488. * @}
  489. */
  490. /* Private types -------------------------------------------------------------*/
  491. /* Private variables ---------------------------------------------------------*/
  492. /* Private constants ---------------------------------------------------------*/
  493. /** @defgroup I2C_Private_Constants I2C Private Constants
  494. * @{
  495. */
  496. #define I2C_FLAG_MASK ((uint32_t)0x0000FFFFU)
  497. /**
  498. * @}
  499. */
  500. /* Private macros ------------------------------------------------------------*/
  501. /** @defgroup I2C_Private_Macros I2C Private Macros
  502. * @{
  503. */
  504. #define I2C_FREQRANGE(__PCLK__) ((__PCLK__)/1000000U)
  505. #define I2C_RISE_TIME(__FREQRANGE__, __SPEED__) (((__SPEED__) <= 100000U) ? ((__FREQRANGE__) + 1U) : ((((__FREQRANGE__) * 300U) / 1000U) + 1U))
  506. #define I2C_SPEED_STANDARD(__PCLK__, __SPEED__) (((((__PCLK__)/((__SPEED__) << 1U)) & I2C_CCR_CCR) < 4U)? 4U:((__PCLK__) / ((__SPEED__) << 1U)))
  507. #define I2C_SPEED_FAST(__PCLK__, __SPEED__, __DUTYCYCLE__) (((__DUTYCYCLE__) == I2C_DUTYCYCLE_2)? ((__PCLK__) / ((__SPEED__) * 3U)) : (((__PCLK__) / ((__SPEED__) * 25U)) | I2C_DUTYCYCLE_16_9))
  508. #define I2C_SPEED(__PCLK__, __SPEED__, __DUTYCYCLE__) (((__SPEED__) <= 100000U)? (I2C_SPEED_STANDARD((__PCLK__), (__SPEED__))) : \
  509. ((I2C_SPEED_FAST((__PCLK__), (__SPEED__), (__DUTYCYCLE__)) & I2C_CCR_CCR) == 0U)? 1U : \
  510. ((I2C_SPEED_FAST((__PCLK__), (__SPEED__), (__DUTYCYCLE__))) | I2C_CCR_FS))
  511. #define I2C_7BIT_ADD_WRITE(__ADDRESS__) ((uint8_t)((__ADDRESS__) & (~I2C_OAR1_ADD0)))
  512. #define I2C_7BIT_ADD_READ(__ADDRESS__) ((uint8_t)((__ADDRESS__) | I2C_OAR1_ADD0))
  513. #define I2C_10BIT_ADDRESS(__ADDRESS__) ((uint8_t)((uint16_t)((__ADDRESS__) & (uint16_t)(0x00FFU))))
  514. #define I2C_10BIT_HEADER_WRITE(__ADDRESS__) ((uint8_t)((uint16_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0x0300U))) >> 7U) | (uint16_t)(0x00F0U))))
  515. #define I2C_10BIT_HEADER_READ(__ADDRESS__) ((uint8_t)((uint16_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0x0300U))) >> 7U) | (uint16_t)(0x00F1U))))
  516. #define I2C_MEM_ADD_MSB(__ADDRESS__) ((uint8_t)((uint16_t)(((uint16_t)((__ADDRESS__) & (uint16_t)(0xFF00U))) >> 8U)))
  517. #define I2C_MEM_ADD_LSB(__ADDRESS__) ((uint8_t)((uint16_t)((__ADDRESS__) & (uint16_t)(0x00FFU))))
  518. /** @defgroup I2C_IS_RTC_Definitions I2C Private macros to check input parameters
  519. * @{
  520. */
  521. #define IS_I2C_DUTY_CYCLE(CYCLE) (((CYCLE) == I2C_DUTYCYCLE_2) || \
  522. ((CYCLE) == I2C_DUTYCYCLE_16_9))
  523. #define IS_I2C_ADDRESSING_MODE(ADDRESS) (((ADDRESS) == I2C_ADDRESSINGMODE_7BIT) || \
  524. ((ADDRESS) == I2C_ADDRESSINGMODE_10BIT))
  525. #define IS_I2C_DUAL_ADDRESS(ADDRESS) (((ADDRESS) == I2C_DUALADDRESS_DISABLE) || \
  526. ((ADDRESS) == I2C_DUALADDRESS_ENABLE))
  527. #define IS_I2C_GENERAL_CALL(CALL) (((CALL) == I2C_GENERALCALL_DISABLE) || \
  528. ((CALL) == I2C_GENERALCALL_ENABLE))
  529. #define IS_I2C_NO_STRETCH(STRETCH) (((STRETCH) == I2C_NOSTRETCH_DISABLE) || \
  530. ((STRETCH) == I2C_NOSTRETCH_ENABLE))
  531. #define IS_I2C_MEMADD_SIZE(SIZE) (((SIZE) == I2C_MEMADD_SIZE_8BIT) || \
  532. ((SIZE) == I2C_MEMADD_SIZE_16BIT))
  533. #define IS_I2C_CLOCK_SPEED(SPEED) (((SPEED) > 0) && ((SPEED) <= 400000U))
  534. #define IS_I2C_OWN_ADDRESS1(ADDRESS1) (((ADDRESS1) & (uint32_t)(0xFFFFFC00U)) == 0U)
  535. #define IS_I2C_OWN_ADDRESS2(ADDRESS2) (((ADDRESS2) & (uint32_t)(0xFFFFFF01U)) == 0U)
  536. #define IS_I2C_TRANSFER_OPTIONS_REQUEST(REQUEST) (((REQUEST) == I2C_FIRST_FRAME) || \
  537. ((REQUEST) == I2C_NEXT_FRAME) || \
  538. ((REQUEST) == I2C_FIRST_AND_LAST_FRAME) || \
  539. ((REQUEST) == I2C_LAST_FRAME))
  540. /**
  541. * @}
  542. */
  543. /**
  544. * @}
  545. */
  546. /* Private functions ---------------------------------------------------------*/
  547. /** @defgroup I2C_Private_Functions I2C Private Functions
  548. * @{
  549. */
  550. /**
  551. * @}
  552. */
  553. /**
  554. * @}
  555. */
  556. /**
  557. * @}
  558. */
  559. #ifdef __cplusplus
  560. }
  561. #endif
  562. #endif /* __STM32F4xx_HAL_I2C_H */
  563. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/