stm32h7xx_hal_i2s.h 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617
  1. /**
  2. ******************************************************************************
  3. * @file stm32h7xx_hal_i2s.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 21-April-2017
  7. * @brief Header file of I2S HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2017 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 __STM32H7xx_HAL_I2S_H
  39. #define __STM32H7xx_HAL_I2S_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32h7xx_hal_def.h"
  45. /** @addtogroup STM32H7xx_HAL_Driver
  46. * @{
  47. */
  48. /** @addtogroup I2S
  49. * @{
  50. */
  51. /* Exported types ------------------------------------------------------------*/
  52. /** @defgroup I2S_Exported_Types I2S Exported Types
  53. * @{
  54. */
  55. /**
  56. * @brief I2S Init structure definition
  57. */
  58. typedef struct
  59. {
  60. uint32_t Mode; /*!< Specifies the I2S operating mode.
  61. This parameter can be a value of @ref I2S_Mode */
  62. uint32_t Standard; /*!< Specifies the standard used for the I2S communication.
  63. This parameter can be a value of @ref I2S_Standard */
  64. uint32_t DataFormat; /*!< Specifies the data format for the I2S communication.
  65. This parameter can be a value of @ref I2S_Data_Format */
  66. uint32_t MCLKOutput; /*!< Specifies whether the I2S MCLK output is enabled or not.
  67. This parameter can be a value of @ref I2S_MCLK_Output */
  68. uint32_t AudioFreq; /*!< Specifies the frequency selected for the I2S communication.
  69. This parameter can be a value of @ref I2S_Audio_Frequency */
  70. uint32_t CPOL; /*!< Specifies the idle state of the I2S clock.
  71. This parameter can be a value of @ref I2S_Clock_Polarity */
  72. uint32_t FirstBit; /*!< Specifies whether data transfers start from MSB or LSB bit.
  73. This parameter can be a value of @ref I2S_MSB_LSB_transmission */
  74. uint32_t WSInversion; /*!< Control the Word Select Inversion.
  75. This parameter can be a value of @ref I2S_WSInversion */
  76. uint32_t IOSwap; /*!< Invert MISO/MOSI alternate functions
  77. This parameter can be a value of @ref I2S_IO_Swap */
  78. uint32_t Data24BitAlignment; /*!< Specifies the Data Padding for 24 bits data lenght
  79. This parameter can be a value of @ref I2S_Data_24Bit_Alignment */
  80. uint32_t FifoThreshold; /*!< Specifies the FIFO threshold level.
  81. This parameter can be a value of @ref I2S_Fifo_Threshold */
  82. uint32_t MasterKeepIOState; /*!< Control of Alternate function GPIOs state
  83. This parameter can be a value of @ref I2S_Master_Keep_IO_State */
  84. uint32_t SlaveExtendFREDetection; /*!< Control the channel length in SLAVE.
  85. This parameter can be a value of @ref I2S_SlaveExtendFREDetection */
  86. }I2S_InitTypeDef;
  87. /**
  88. * @brief HAL State structures definition
  89. */
  90. typedef enum
  91. {
  92. HAL_I2S_STATE_RESET = 0x00U, /*!< I2S not yet initialized or disabled */
  93. HAL_I2S_STATE_READY = 0x01U, /*!< I2S initialized and ready for use */
  94. HAL_I2S_STATE_BUSY = 0x02U, /*!< I2S internal process is ongoing */
  95. HAL_I2S_STATE_BUSY_TX = 0x03U, /*!< Data Transmission process is ongoing */
  96. HAL_I2S_STATE_BUSY_RX = 0x04U, /*!< Data Reception process is ongoing */
  97. HAL_I2S_STATE_BUSY_TX_RX = 0x05U, /*!< Data Transmission and Reception process is ongoing */
  98. HAL_I2S_STATE_TIMEOUT = 0x06U, /*!< I2S timeout state */
  99. HAL_I2S_STATE_ERROR = 0x07U /*!< I2S error state */
  100. }HAL_I2S_StateTypeDef;
  101. /**
  102. * @brief I2S handle Structure definition
  103. */
  104. typedef struct __I2S_HandleTypeDef
  105. {
  106. SPI_TypeDef *Instance; /*!< I2S registers base address */
  107. I2S_InitTypeDef Init; /*!< I2S communication parameters */
  108. uint16_t *pTxBuffPtr; /*!< Pointer to I2S Tx transfer buffer */
  109. __IO uint16_t TxXferSize; /*!< I2S Tx transfer size */
  110. __IO uint16_t TxXferCount; /*!< I2S Tx transfer Counter */
  111. uint16_t *pRxBuffPtr; /*!< Pointer to I2S Rx transfer buffer */
  112. __IO uint16_t RxXferSize; /*!< I2S Rx transfer size */
  113. __IO uint16_t RxXferCount; /*!< I2S Rx transfer counter */
  114. void (*RxISR)(struct __I2S_HandleTypeDef *hi2s); /*!< function pointer on Rx ISR */
  115. void (*TxISR)(struct __I2S_HandleTypeDef *hi2s); /*!< function pointer on Tx ISR */
  116. DMA_HandleTypeDef *hdmatx; /*!< I2S Tx DMA handle parameters */
  117. DMA_HandleTypeDef *hdmarx; /*!< I2S Rx DMA handle parameters */
  118. __IO HAL_LockTypeDef Lock; /*!< I2S locking object */
  119. __IO HAL_I2S_StateTypeDef State; /*!< I2S communication state */
  120. __IO uint32_t ErrorCode; /*!< I2S Error code */
  121. }I2S_HandleTypeDef;
  122. /**
  123. * @}
  124. */
  125. /* Exported constants --------------------------------------------------------*/
  126. /** @defgroup I2S_Exported_Constants I2S Exported Constants
  127. * @{
  128. */
  129. /**
  130. * @defgroup I2S_Error_Defintion I2S Error Defintion
  131. * @brief I2S Error Code
  132. * @{
  133. */
  134. #define HAL_I2S_ERROR_NONE (0x00000000U) /*!< No error */
  135. #define HAL_I2S_ERROR_UDR (0x00000001U) /*!< I2S Underrun error */
  136. #define HAL_I2S_ERROR_OVR (0x00000002U) /*!< I2S Overrun error */
  137. #define HAL_I2S_ERROR_FRE (0x00000004U) /*!< I2S Frame format error */
  138. #define HAL_I2S_ERROR_DMA (0x00000008U) /*!< DMA transfer error */
  139. #define HAL_I2S_ERROR_DMA (0x00000008U) /*!< DMA transfer error */
  140. #define HAL_I2S_ERROR_TIMEOUT (0x00000010U) /*!< Timeout error */
  141. #define HAL_I2S_ERROR_PRESCALER (0x00000020U) /*!< Prescaler error */
  142. /**
  143. * @}
  144. */
  145. /** @defgroup I2S_Mode I2S Mode
  146. * @{
  147. */
  148. #define I2S_MODE_SLAVE_TX (0x00000000U)
  149. #define I2S_MODE_SLAVE_RX (0x00000002U)
  150. #define I2S_MODE_MASTER_TX (0x00000004U)
  151. #define I2S_MODE_MASTER_RX (0x00000006U)
  152. #define I2S_MODE_SLAVE_FD (0x00000008U)
  153. #define I2S_MODE_MASTER_FD (0x0000000AU)
  154. /**
  155. * @}
  156. */
  157. /** @defgroup I2S_Standard I2S Standard
  158. * @{
  159. */
  160. #define I2S_STANDARD_PHILIPS (0x00000000U)
  161. #define I2S_STANDARD_MSB (0x00000010U)
  162. #define I2S_STANDARD_LSB (0x00000020U)
  163. #define I2S_STANDARD_PCM_SHORT (0x00000030U)
  164. #define I2S_STANDARD_PCM_LONG (0x000000B0U)
  165. /**
  166. * @}
  167. */
  168. /** @defgroup I2S_Data_Format I2S Data Format
  169. * @{
  170. */
  171. #define I2S_DATAFORMAT_16B (0x00000000U)
  172. #define I2S_DATAFORMAT_16B_EXTENDED (0x00000400U)
  173. #define I2S_DATAFORMAT_24B (0x00000500U)
  174. #define I2S_DATAFORMAT_32B (0x00000600U)
  175. /**
  176. * @}
  177. */
  178. /** @defgroup I2S_MCLK_Output I2S MCLK Output
  179. * @{
  180. */
  181. #define I2S_MCLKOUTPUT_ENABLE SPI_I2SCFGR_MCKOE
  182. #define I2S_MCLKOUTPUT_DISABLE (0x00000000U)
  183. /**
  184. * @}
  185. */
  186. /** @defgroup I2S_Audio_Frequency I2S Audio Frequency
  187. * @{
  188. */
  189. #define I2S_AUDIOFREQ_192K (192000U)
  190. #define I2S_AUDIOFREQ_96K (96000U)
  191. #define I2S_AUDIOFREQ_48K (48000U)
  192. #define I2S_AUDIOFREQ_44K (44100U)
  193. #define I2S_AUDIOFREQ_32K (32000U)
  194. #define I2S_AUDIOFREQ_22K (22050U)
  195. #define I2S_AUDIOFREQ_16K (16000U)
  196. #define I2S_AUDIOFREQ_11K (11025U)
  197. #define I2S_AUDIOFREQ_8K (8000U)
  198. #define I2S_AUDIOFREQ_DEFAULT (2U)
  199. /**
  200. * @}
  201. */
  202. /** @defgroup I2S_Clock_Polarity I2S Clock Polarity
  203. * @{
  204. */
  205. #define I2S_CPOL_LOW (0x00000000U)
  206. #define I2S_CPOL_HIGH SPI_I2SCFGR_CKPOL
  207. /**
  208. * @}
  209. */
  210. /** @defgroup I2S_MSB_LSB_transmission I2S MSB LSB Transmission
  211. * @{
  212. */
  213. #define I2S_FIRSTBIT_MSB (0x00000000U)
  214. #define I2S_FIRSTBIT_LSB SPI_CFG2_LSBFRST
  215. /**
  216. * @}
  217. */
  218. /** @defgroup I2S_WSInversion I2S Word Select Inversion
  219. * @{
  220. */
  221. #define I2S_WS_INVERSION_DISABLE (0x00000000U)
  222. #define I2S_WS_INVERSION_ENABLE SPI_I2SCFGR_WSINV
  223. /**
  224. * @}
  225. */
  226. /** @defgroup I2S_IO_Swap Control I2S IO Swap
  227. * @{
  228. */
  229. #define I2S_IO_SWAP_DISABLE (0x00000000U)
  230. #define I2S_IO_SWAP_ENABLE SPI_CFG2_IOSWP
  231. /**
  232. * @}
  233. */
  234. /** @defgroup I2S_Data_24Bit_Alignment Data Padding 24Bit
  235. * @{
  236. */
  237. #define I2S_DATA_24BIT_ALIGNMENT_RIGHT (0x00000000U)
  238. #define I2S_DATA_24BIT_ALIGNMENT_LEFT SPI_I2SCFGR_DATFMT
  239. /**
  240. * @}
  241. */
  242. /** @defgroup I2S_Fifo_Threshold I2S Fifo Threshold
  243. * @{
  244. */
  245. #define I2S_FIFO_THRESHOLD_01DATA (0x00000000U)
  246. #define I2S_FIFO_THRESHOLD_02DATA (0x00000020U)
  247. #define I2S_FIFO_THRESHOLD_03DATA (0x00000040U)
  248. #define I2S_FIFO_THRESHOLD_04DATA (0x00000060U)
  249. #define I2S_FIFO_THRESHOLD_05DATA (0x00000080U)
  250. #define I2S_FIFO_THRESHOLD_06DATA (0x000000A0U)
  251. #define I2S_FIFO_THRESHOLD_07DATA (0x000000C0U)
  252. #define I2S_FIFO_THRESHOLD_08DATA (0x000000E0U)
  253. /**
  254. * @}
  255. */
  256. /** @defgroup I2S_Master_Keep_IO_State Keep IO State
  257. * @{
  258. */
  259. #define I2S_MASTER_KEEP_IO_STATE_DISABLE (0x00000000U)
  260. #define I2S_MASTER_KEEP_IO_STATE_ENABLE SPI_CFG2_AFCNTR
  261. /**
  262. * @}
  263. */
  264. /** @defgroup I2S_SlaveExtendFREDetection Slave Extend FRE Detection
  265. * @{
  266. */
  267. #define I2S_SLAVE_EXTEND_FRE_DETECTION_DISABLE (0x00000000U)
  268. #define I2S_SLAVE_EXTEND_FRE_DETECTION_ENABLE SPI_I2SCFGR_FIXCH
  269. /**
  270. * @}
  271. */
  272. /** @defgroup I2S_Interrupt_definition I2S Interrupt definition
  273. * @{
  274. */
  275. #define I2S_IT_TXE SPI_IER_TXPIE
  276. #define I2S_IT_RXNE SPI_IER_RXPIE
  277. #define I2S_IT_ERR (SPI_IER_OVRIE | SPI_IER_UDRIE | SPI_IER_TIFREIE)
  278. /**
  279. * @}
  280. */
  281. /** @defgroup I2S_Flag_definition I2S Flag definition
  282. * @{
  283. */
  284. #define I2S_FLAG_TXE SPI_SR_TXP /* I2S status flag: Tx buffer empty flag */
  285. #define I2S_FLAG_RXNE SPI_SR_RXP /* I2S status flag: Rx buffer not empty flag */
  286. #define I2S_FLAG_UDR SPI_SR_UDR /* I2S Error flag: Underrun flag */
  287. #define I2S_FLAG_RXWNE SPI_SR_RXWNE /* I2S RxFIFO Word Not Empty */
  288. #define I2S_FLAG_OVR SPI_SR_OVR /* I2S Error flag: Overrun flag */
  289. #define I2S_FLAG_FRE SPI_SR_TIFRE /* I2S Error flag: TI mode frame format error flag */
  290. /**
  291. * @}
  292. */
  293. /**
  294. * @}
  295. */
  296. /* Exported macro ------------------------------------------------------------*/
  297. /** @defgroup I2S_Exported_Macros I2S Exported Macros
  298. * @{
  299. */
  300. /** @brief Reset I2S handle state
  301. * @param __HANDLE__: specifies the I2S Handle.
  302. * @retval None
  303. */
  304. #define __HAL_I2S_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2S_STATE_RESET)
  305. /** @brief Enable the specified SPI peripheral (in I2S mode).
  306. * @param __HANDLE__: specifies the I2S Handle.
  307. * @retval None
  308. */
  309. #define __HAL_I2S_ENABLE(__HANDLE__) SET_BIT((__HANDLE__)->Instance->CR1, SPI_CR1_SPE)
  310. /** @brief Disable the specified SPI peripheral (in I2S mode).
  311. * @param __HANDLE__: specifies the I2S Handle.
  312. * @retval None
  313. */
  314. #define __HAL_I2S_DISABLE(__HANDLE__) CLEAR_BIT((__HANDLE__)->Instance->CR1, SPI_CR1_SPE)
  315. /** @brief Enable the specified I2S interrupts.
  316. * @param __HANDLE__: specifies the I2S Handle.
  317. * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
  318. * This parameter can be one of the following values:
  319. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  320. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  321. * @arg I2S_IT_ERR: Error interrupt enable
  322. * @retval None
  323. */
  324. #define __HAL_I2S_ENABLE_IT(__HANDLE__, __INTERRUPT__) (SET_BIT((__HANDLE__)->Instance->IER,(__INTERRUPT__)))
  325. /** @brief Disable the specified I2S interrupts.
  326. * @param __HANDLE__: specifies the I2S Handle.
  327. * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
  328. * This parameter can be one of the following values:
  329. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  330. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  331. * @arg I2S_IT_ERR: Error interrupt enable
  332. * @retval None
  333. */
  334. #define __HAL_I2S_DISABLE_IT(__HANDLE__, __INTERRUPT__) (CLEAR_BIT((__HANDLE__)->Instance->IER,(__INTERRUPT__)))
  335. /** @brief Checks if the specified I2S interrupt source is enabled or disabled.
  336. * @param __HANDLE__: specifies the I2S Handle.
  337. * This parameter can be I2S where x: 1, 2, or 3 to select the I2S peripheral.
  338. * @param __INTERRUPT__: specifies the I2S interrupt source to check.
  339. * This parameter can be one of the following values:
  340. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  341. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  342. * @arg I2S_IT_ERR: Error interrupt enable
  343. * @retval The new state of __IT__ (TRUE or FALSE).
  344. */
  345. #define __HAL_I2S_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->IER & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  346. /** @brief Checks whether the specified I2S flag is set or not.
  347. * @param __HANDLE__: specifies the I2S Handle.
  348. * @param __FLAG__: specifies the flag to check.
  349. * This parameter can be one of the following values:
  350. * @arg I2S_FLAG_TXE : Tx buffer empty flag
  351. * @arg I2S_FLAG_RXNE : Rx buffer not empty flag
  352. * @arg I2S_FLAG_UDR : Underrun flag
  353. * @arg I2S_FLAG_OVR : Overrun flag
  354. * @arg I2S_FLAG_FRE : TI mode frame format error flag
  355. * @retval The new state of __FLAG__ (TRUE or FALSE).
  356. */
  357. #define __HAL_I2S_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
  358. /** @brief Clears the I2S UDR pending flag.
  359. * @param __HANDLE__: specifies the I2S Handle.
  360. * @retval None
  361. */
  362. #define __HAL_I2S_CLEAR_UDRFLAG(__HANDLE__) SET_BIT((__HANDLE__)->Instance->IFCR , SPI_IFCR_UDRC)
  363. /** @brief Clears the I2S OVR pending flag.
  364. * @param __HANDLE__: specifies the I2S Handle.
  365. * @retval None
  366. */
  367. #define __HAL_I2S_CLEAR_OVRFLAG(__HANDLE__) SET_BIT((__HANDLE__)->Instance->IFCR , SPI_IFCR_OVRC)
  368. /** @brief Clear the I2S FRE pending flag.
  369. * @param __HANDLE__: specifies the I2S Handle.
  370. * @retval None
  371. */
  372. #define __HAL_I2S_CLEAR_FREFLAG(__HANDLE__) SET_BIT((__HANDLE__)->Instance->IFCR , SPI_IFCR_TIFREC)
  373. /* Include I2S HAL Extended module */
  374. #include "stm32h7xx_hal_i2s_ex.h"
  375. /* Exported functions --------------------------------------------------------*/
  376. /** @defgroup I2S_Exported_Functions I2S Exported Functions
  377. * @{
  378. */
  379. /** @defgroup I2S_Exported_Functions_Group1 Initialization and de-initialization functions
  380. * @{
  381. */
  382. /* Initialization/de-initialization functions ********************************/
  383. HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s);
  384. HAL_StatusTypeDef HAL_I2S_DeInit (I2S_HandleTypeDef *hi2s);
  385. void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s);
  386. void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s);
  387. /**
  388. * @}
  389. */
  390. /** @defgroup I2S_Exported_Functions_Group2 IO operation functions
  391. * @{
  392. */
  393. /* I/O operation functions ***************************************************/
  394. /* Blocking mode: Polling */
  395. HAL_StatusTypeDef HAL_I2S_Transmit(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  396. HAL_StatusTypeDef HAL_I2S_Receive(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  397. /* Non-Blocking mode: Interrupt */
  398. HAL_StatusTypeDef HAL_I2S_Transmit_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  399. HAL_StatusTypeDef HAL_I2S_Receive_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  400. void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s);
  401. /* Non-Blocking mode: DMA */
  402. HAL_StatusTypeDef HAL_I2S_Transmit_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  403. HAL_StatusTypeDef HAL_I2S_Receive_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  404. HAL_StatusTypeDef HAL_I2S_DMAPause(I2S_HandleTypeDef *hi2s);
  405. HAL_StatusTypeDef HAL_I2S_DMAResume(I2S_HandleTypeDef *hi2s);
  406. HAL_StatusTypeDef HAL_I2S_DMAStop(I2S_HandleTypeDef *hi2s);
  407. /* Callbacks used in non blocking modes (Interrupt and DMA) *******************/
  408. void HAL_I2S_TxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  409. void HAL_I2S_TxCpltCallback(I2S_HandleTypeDef *hi2s);
  410. void HAL_I2S_RxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  411. void HAL_I2S_RxCpltCallback(I2S_HandleTypeDef *hi2s);
  412. void HAL_I2S_ErrorCallback(I2S_HandleTypeDef *hi2s);
  413. /**
  414. * @}
  415. */
  416. /** @addtogroup I2S_Exported_Functions_Group3 Peripheral State and Errors functions
  417. * @{
  418. */
  419. /* Peripheral Control and State functions ************************************/
  420. HAL_I2S_StateTypeDef HAL_I2S_GetState(I2S_HandleTypeDef *hi2s);
  421. uint32_t HAL_I2S_GetError(I2S_HandleTypeDef *hi2s);
  422. /**
  423. * @}
  424. */
  425. /* Private macros ------------------------------------------------------------*/
  426. /** @defgroup I2S_Private I2S Private
  427. * @{
  428. */
  429. #define IS_I2S_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_TX) || \
  430. ((MODE) == I2S_MODE_SLAVE_RX) || \
  431. ((MODE) == I2S_MODE_MASTER_TX) || \
  432. ((MODE) == I2S_MODE_MASTER_RX) || \
  433. ((MODE) == I2S_MODE_SLAVE_FD) || \
  434. ((MODE) == I2S_MODE_MASTER_FD))
  435. #define IS_I2S_FD_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_FD) || \
  436. ((MODE) == I2S_MODE_MASTER_FD))
  437. #define IS_I2S_MASTER(MODE) (((MODE) == I2S_MODE_MASTER_TX) || \
  438. ((MODE) == I2S_MODE_MASTER_RX) || \
  439. ((MODE) == I2S_MODE_MASTER_FD))
  440. #define IS_I2S_TX_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_TX) || \
  441. ((MODE) == I2S_MODE_MASTER_TX) || \
  442. ((MODE) == I2S_MODE_SLAVE_FD) || \
  443. ((MODE) == I2S_MODE_MASTER_FD))
  444. #define IS_I2S_RX_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_RX) || \
  445. ((MODE) == I2S_MODE_MASTER_RX) || \
  446. ((MODE) == I2S_MODE_SLAVE_FD) || \
  447. ((MODE) == I2S_MODE_MASTER_FD))
  448. #define IS_I2S_STANDARD(STANDARD) (((STANDARD) == I2S_STANDARD_PHILIPS) || \
  449. ((STANDARD) == I2S_STANDARD_MSB) || \
  450. ((STANDARD) == I2S_STANDARD_LSB) || \
  451. ((STANDARD) == I2S_STANDARD_PCM_SHORT) || \
  452. ((STANDARD) == I2S_STANDARD_PCM_LONG))
  453. #define IS_I2S_DATA_FORMAT(FORMAT) (((FORMAT) == I2S_DATAFORMAT_16B) || \
  454. ((FORMAT) == I2S_DATAFORMAT_16B_EXTENDED) || \
  455. ((FORMAT) == I2S_DATAFORMAT_24B) || \
  456. ((FORMAT) == I2S_DATAFORMAT_32B))
  457. #define IS_I2S_MCLK_OUTPUT(OUTPUT) (((OUTPUT) == I2S_MCLKOUTPUT_ENABLE) || \
  458. ((OUTPUT) == I2S_MCLKOUTPUT_DISABLE))
  459. #define IS_I2S_AUDIO_FREQ(FREQ) ((((FREQ) >= I2S_AUDIOFREQ_8K) && \
  460. ((FREQ) <= I2S_AUDIOFREQ_192K)) || \
  461. ((FREQ) == I2S_AUDIOFREQ_DEFAULT))
  462. #define IS_I2S_CPOL(CPOL) (((CPOL) == I2S_CPOL_LOW) || \
  463. ((CPOL) == I2S_CPOL_HIGH))
  464. #define IS_I2S_FIRST_BIT(FIRSTBIT) (((FIRSTBIT) == I2S_FIRSTBIT_MSB) || \
  465. ((FIRSTBIT) == I2S_FIRSTBIT_LSB))
  466. #define IS_I2S_WS_INVERSION(WSINV) (((WSINV) == I2S_WS_INVERSION_DISABLE) || \
  467. ((WSINV) == I2S_WS_INVERSION_ENABLE))
  468. #define IS_I2S_IO_SWAP(IOSWAP) (((IOSWAP) == I2S_IO_SWAP_DISABLE) || \
  469. ((IOSWAP) == I2S_IO_SWAP_ENABLE))
  470. #define IS_I2S_DATA_24BIT_ALIGNMENT(ALIGNMENT) (((ALIGNMENT) == I2S_DATA_24BIT_ALIGNMENT_RIGHT) || \
  471. ((ALIGNMENT) == I2S_DATA_24BIT_ALIGNMENT_LEFT))
  472. #define IS_I2S_FIFO_THRESHOLD(FTHLV) (((FTHLV) == I2S_FIFO_THRESHOLD_01DATA) || \
  473. ((FTHLV) == I2S_FIFO_THRESHOLD_02DATA) || \
  474. ((FTHLV) == I2S_FIFO_THRESHOLD_03DATA) || \
  475. ((FTHLV) == I2S_FIFO_THRESHOLD_04DATA) || \
  476. ((FTHLV) == I2S_FIFO_THRESHOLD_05DATA) || \
  477. ((FTHLV) == I2S_FIFO_THRESHOLD_06DATA) || \
  478. ((FTHLV) == I2S_FIFO_THRESHOLD_07DATA) || \
  479. ((FTHLV) == I2S_FIFO_THRESHOLD_08DATA))
  480. #define IS_I2S_MASTER_KEEP_IO_STATE(AFCNTR) (((AFCNTR) == I2S_MASTER_KEEP_IO_STATE_DISABLE) || \
  481. ((AFCNTR) == I2S_MASTER_KEEP_IO_STATE_ENABLE))
  482. #define IS_I2S_SLAVE_EXTEND_FRE_DETECTION(FIXCH) (((FIXCH) == I2S_SLAVE_EXTEND_FRE_DETECTION_DISABLE) || \
  483. ((FIXCH) == I2S_SLAVE_EXTEND_FRE_DETECTION_ENABLE))
  484. /**
  485. * @}
  486. */
  487. /* Define the private group ***************************************************/
  488. /******************************************************************************/
  489. /** @defgroup I2S_Private I2S Private
  490. * @{
  491. */
  492. /**
  493. * @}
  494. */
  495. /******************************************************************************/
  496. /**
  497. * @}
  498. */
  499. /**
  500. * @}
  501. */
  502. /**
  503. * @}
  504. */
  505. /**
  506. * @}
  507. */
  508. #ifdef __cplusplus
  509. }
  510. #endif
  511. #endif /* __STM32H7xx_HAL_I2S_H */
  512. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/