stm32f4xx_hal_i2s.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  1. /**
  2. ******************************************************************************
  3. * @file stm32f4xx_hal_i2s.h
  4. * @author MCD Application Team
  5. * @version V1.3.0
  6. * @date 09-March-2015
  7. * @brief Header file of I2S HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2015 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_I2S_H
  39. #define __STM32F4xx_HAL_I2S_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 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 ClockSource; /*!< Specifies the I2S Clock Source.
  73. This parameter can be a value of @ref I2S_Clock_Source */
  74. uint32_t FullDuplexMode; /*!< Specifies the I2S FullDuplex mode.
  75. This parameter can be a value of @ref I2S_FullDuplex_Mode */
  76. }I2S_InitTypeDef;
  77. /**
  78. * @brief HAL State structures definition
  79. */
  80. typedef enum
  81. {
  82. HAL_I2S_STATE_RESET = 0x00, /*!< I2S not yet initialized or disabled */
  83. HAL_I2S_STATE_READY = 0x01, /*!< I2S initialized and ready for use */
  84. HAL_I2S_STATE_BUSY = 0x02, /*!< I2S internal process is ongoing */
  85. HAL_I2S_STATE_BUSY_TX = 0x12, /*!< Data Transmission process is ongoing */
  86. HAL_I2S_STATE_BUSY_RX = 0x22, /*!< Data Reception process is ongoing */
  87. HAL_I2S_STATE_BUSY_TX_RX = 0x32, /*!< Data Transmission and Reception process is ongoing */
  88. HAL_I2S_STATE_TIMEOUT = 0x03, /*!< I2S timeout state */
  89. HAL_I2S_STATE_ERROR = 0x04 /*!< I2S error state */
  90. }HAL_I2S_StateTypeDef;
  91. /**
  92. * @brief I2S handle Structure definition
  93. */
  94. typedef struct
  95. {
  96. SPI_TypeDef *Instance; /* I2S registers base address */
  97. I2S_InitTypeDef Init; /* I2S communication parameters */
  98. uint16_t *pTxBuffPtr; /* Pointer to I2S Tx transfer buffer */
  99. __IO uint16_t TxXferSize; /* I2S Tx transfer size */
  100. __IO uint16_t TxXferCount; /* I2S Tx transfer Counter */
  101. uint16_t *pRxBuffPtr; /* Pointer to I2S Rx transfer buffer */
  102. __IO uint16_t RxXferSize; /* I2S Rx transfer size */
  103. __IO uint16_t RxXferCount; /* I2S Rx transfer counter */
  104. DMA_HandleTypeDef *hdmatx; /* I2S Tx DMA handle parameters */
  105. DMA_HandleTypeDef *hdmarx; /* I2S Rx DMA handle parameters */
  106. __IO HAL_LockTypeDef Lock; /* I2S locking object */
  107. __IO HAL_I2S_StateTypeDef State; /* I2S communication state */
  108. __IO uint32_t ErrorCode; /* I2S Error code */
  109. }I2S_HandleTypeDef;
  110. /**
  111. * @}
  112. */
  113. /* Exported constants --------------------------------------------------------*/
  114. /** @defgroup I2S_Exported_Constants I2S Exported Constants
  115. * @{
  116. */
  117. /** @defgroup I2S_Error_Code I2S Error Code
  118. * @brief I2S Error Code
  119. * @{
  120. */
  121. #define HAL_I2S_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
  122. #define HAL_I2S_ERROR_UDR ((uint32_t)0x00000001) /*!< I2S Underrun error */
  123. #define HAL_I2S_ERROR_OVR ((uint32_t)0x00000002) /*!< I2S Overrun error */
  124. #define HAL_I2SEX_ERROR_UDR ((uint32_t)0x00000004) /*!< I2S extended Underrun error */
  125. #define HAL_I2SEX_ERROR_OVR ((uint32_t)0x00000008) /*!< I2S extended Overrun error */
  126. #define HAL_I2S_ERROR_FRE ((uint32_t)0x00000010) /*!< I2S Frame format error */
  127. #define HAL_I2S_ERROR_DMA ((uint32_t)0x00000020) /*!< DMA transfer error */
  128. /**
  129. * @}
  130. */
  131. /** @defgroup I2S_Clock_Source I2S Clock Source
  132. * @{
  133. */
  134. #define I2S_CLOCK_PLL ((uint32_t)0x00000000)
  135. #define I2S_CLOCK_EXTERNAL ((uint32_t)0x00000001)
  136. #define I2S_CLOCK_PLLR ((uint32_t)0x00000002)
  137. #define I2S_CLOCK_PLLSRC ((uint32_t)0x00000003)
  138. /**
  139. * @}
  140. */
  141. /** @defgroup I2S_Mode I2S Mode
  142. * @{
  143. */
  144. #define I2S_MODE_SLAVE_TX ((uint32_t)0x00000000)
  145. #define I2S_MODE_SLAVE_RX ((uint32_t)0x00000100)
  146. #define I2S_MODE_MASTER_TX ((uint32_t)0x00000200)
  147. #define I2S_MODE_MASTER_RX ((uint32_t)0x00000300)
  148. /**
  149. * @}
  150. */
  151. /** @defgroup I2S_Standard I2S Standard
  152. * @{
  153. */
  154. #define I2S_STANDARD_PHILIPS ((uint32_t)0x00000000)
  155. #define I2S_STANDARD_MSB ((uint32_t)0x00000010)
  156. #define I2S_STANDARD_LSB ((uint32_t)0x00000020)
  157. #define I2S_STANDARD_PCM_SHORT ((uint32_t)0x00000030)
  158. #define I2S_STANDARD_PCM_LONG ((uint32_t)0x000000B0)
  159. /**
  160. * @}
  161. */
  162. /** @defgroup I2S_Data_Format I2S Data Format
  163. * @{
  164. */
  165. #define I2S_DATAFORMAT_16B ((uint32_t)0x00000000)
  166. #define I2S_DATAFORMAT_16B_EXTENDED ((uint32_t)0x00000001)
  167. #define I2S_DATAFORMAT_24B ((uint32_t)0x00000003)
  168. #define I2S_DATAFORMAT_32B ((uint32_t)0x00000005)
  169. /**
  170. * @}
  171. */
  172. /** @defgroup I2S_MCLK_Output I2S Mclk Output
  173. * @{
  174. */
  175. #define I2S_MCLKOUTPUT_ENABLE ((uint32_t)SPI_I2SPR_MCKOE)
  176. #define I2S_MCLKOUTPUT_DISABLE ((uint32_t)0x00000000)
  177. /**
  178. * @}
  179. */
  180. /** @defgroup I2S_Audio_Frequency I2S Audio Frequency
  181. * @{
  182. */
  183. #define I2S_AUDIOFREQ_192K ((uint32_t)192000)
  184. #define I2S_AUDIOFREQ_96K ((uint32_t)96000)
  185. #define I2S_AUDIOFREQ_48K ((uint32_t)48000)
  186. #define I2S_AUDIOFREQ_44K ((uint32_t)44100)
  187. #define I2S_AUDIOFREQ_32K ((uint32_t)32000)
  188. #define I2S_AUDIOFREQ_22K ((uint32_t)22050)
  189. #define I2S_AUDIOFREQ_16K ((uint32_t)16000)
  190. #define I2S_AUDIOFREQ_11K ((uint32_t)11025)
  191. #define I2S_AUDIOFREQ_8K ((uint32_t)8000)
  192. #define I2S_AUDIOFREQ_DEFAULT ((uint32_t)2)
  193. /**
  194. * @}
  195. */
  196. /** @defgroup I2S_FullDuplex_Mode I2S FullDuplex Mode
  197. * @{
  198. */
  199. #define I2S_FULLDUPLEXMODE_DISABLE ((uint32_t)0x00000000)
  200. #define I2S_FULLDUPLEXMODE_ENABLE ((uint32_t)0x00000001)
  201. /**
  202. * @}
  203. */
  204. /** @defgroup I2S_Clock_Polarity I2S Clock Polarity
  205. * @{
  206. */
  207. #define I2S_CPOL_LOW ((uint32_t)0x00000000)
  208. #define I2S_CPOL_HIGH ((uint32_t)SPI_I2SCFGR_CKPOL)
  209. /**
  210. * @}
  211. */
  212. /** @defgroup I2S_Interrupts_Definition I2S Interrupts Definition
  213. * @{
  214. */
  215. #define I2S_IT_TXE SPI_CR2_TXEIE
  216. #define I2S_IT_RXNE SPI_CR2_RXNEIE
  217. #define I2S_IT_ERR SPI_CR2_ERRIE
  218. /**
  219. * @}
  220. */
  221. /** @defgroup I2S_Flags_Definition I2S Flags Definition
  222. * @{
  223. */
  224. #define I2S_FLAG_TXE SPI_SR_TXE
  225. #define I2S_FLAG_RXNE SPI_SR_RXNE
  226. #define I2S_FLAG_UDR SPI_SR_UDR
  227. #define I2S_FLAG_OVR SPI_SR_OVR
  228. #define I2S_FLAG_FRE SPI_SR_FRE
  229. #define I2S_FLAG_CHSIDE SPI_SR_CHSIDE
  230. #define I2S_FLAG_BSY SPI_SR_BSY
  231. /**
  232. * @}
  233. */
  234. /**
  235. * @}
  236. */
  237. /* Exported macro ------------------------------------------------------------*/
  238. /** @defgroup I2S_Exported_Macros I2S Exported Macros
  239. * @{
  240. */
  241. /** @brief Reset I2S handle state
  242. * @param __HANDLE__: specifies the I2S Handle.
  243. * @retval None
  244. */
  245. #define __HAL_I2S_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_I2S_STATE_RESET)
  246. /** @brief Enable or disable the specified SPI peripheral (in I2S mode).
  247. * @param __HANDLE__: specifies the I2S Handle.
  248. * @retval None
  249. */
  250. #define __HAL_I2S_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->I2SCFGR |= SPI_I2SCFGR_I2SE)
  251. #define __HAL_I2S_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->I2SCFGR &= ~SPI_I2SCFGR_I2SE)
  252. /** @brief Enable or disable the specified I2S interrupts.
  253. * @param __HANDLE__: specifies the I2S Handle.
  254. * @param __INTERRUPT__: specifies the interrupt source to enable or disable.
  255. * This parameter can be one of the following values:
  256. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  257. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  258. * @arg I2S_IT_ERR: Error interrupt enable
  259. * @retval None
  260. */
  261. #define __HAL_I2S_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 |= (__INTERRUPT__))
  262. #define __HAL_I2S_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CR2 &= ~(__INTERRUPT__))
  263. /** @brief Checks if the specified I2S interrupt source is enabled or disabled.
  264. * @param __HANDLE__: specifies the I2S Handle.
  265. * This parameter can be I2S where x: 1, 2, or 3 to select the I2S peripheral.
  266. * @param __INTERRUPT__: specifies the I2S interrupt source to check.
  267. * This parameter can be one of the following values:
  268. * @arg I2S_IT_TXE: Tx buffer empty interrupt enable
  269. * @arg I2S_IT_RXNE: RX buffer not empty interrupt enable
  270. * @arg I2S_IT_ERR: Error interrupt enable
  271. * @retval The new state of __IT__ (TRUE or FALSE).
  272. */
  273. #define __HAL_I2S_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) ((((__HANDLE__)->Instance->CR2 & (__INTERRUPT__)) == (__INTERRUPT__)) ? SET : RESET)
  274. /** @brief Checks whether the specified I2S flag is set or not.
  275. * @param __HANDLE__: specifies the I2S Handle.
  276. * @param __FLAG__: specifies the flag to check.
  277. * This parameter can be one of the following values:
  278. * @arg I2S_FLAG_RXNE: Receive buffer not empty flag
  279. * @arg I2S_FLAG_TXE: Transmit buffer empty flag
  280. * @arg I2S_FLAG_UDR: Underrun flag
  281. * @arg I2S_FLAG_OVR: Overrun flag
  282. * @arg I2S_FLAG_FRE: Frame error flag
  283. * @arg I2S_FLAG_CHSIDE: Channel Side flag
  284. * @arg I2S_FLAG_BSY: Busy flag
  285. * @retval The new state of __FLAG__ (TRUE or FALSE).
  286. */
  287. #define __HAL_I2S_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
  288. /** @brief Clears the I2S OVR pending flag.
  289. * @param __HANDLE__: specifies the I2S Handle.
  290. * @retval None
  291. */
  292. #define __HAL_I2S_CLEAR_OVRFLAG(__HANDLE__) \
  293. do{ \
  294. __IO uint32_t tmpreg; \
  295. tmpreg = (__HANDLE__)->Instance->DR; \
  296. tmpreg = (__HANDLE__)->Instance->SR; \
  297. UNUSED(tmpreg); \
  298. } while(0)
  299. /** @brief Clears the I2S UDR pending flag.
  300. * @param __HANDLE__: specifies the I2S Handle.
  301. * @retval None
  302. */
  303. #define __HAL_I2S_CLEAR_UDRFLAG(__HANDLE__) \
  304. do{ \
  305. __IO uint32_t tmpreg; \
  306. tmpreg = (__HANDLE__)->Instance->SR; \
  307. UNUSED(tmpreg); \
  308. } while(0)
  309. /**
  310. * @}
  311. */
  312. /* Include I2S Extension module */
  313. #include "stm32f4xx_hal_i2s_ex.h"
  314. /* Exported functions --------------------------------------------------------*/
  315. /** @addtogroup I2S_Exported_Functions
  316. * @{
  317. */
  318. /** @addtogroup I2S_Exported_Functions_Group1
  319. * @{
  320. */
  321. /* Initialization/de-initialization functions **********************************/
  322. HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s);
  323. HAL_StatusTypeDef HAL_I2S_DeInit (I2S_HandleTypeDef *hi2s);
  324. void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s);
  325. void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s);
  326. /**
  327. * @}
  328. */
  329. /** @addtogroup I2S_Exported_Functions_Group2
  330. * @{
  331. */
  332. /* I/O operation functions *****************************************************/
  333. /* Blocking mode: Polling */
  334. HAL_StatusTypeDef HAL_I2S_Transmit(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  335. HAL_StatusTypeDef HAL_I2S_Receive(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size, uint32_t Timeout);
  336. /* Non-Blocking mode: Interrupt */
  337. HAL_StatusTypeDef HAL_I2S_Transmit_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  338. HAL_StatusTypeDef HAL_I2S_Receive_IT(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  339. void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s);
  340. /* Non-Blocking mode: DMA */
  341. HAL_StatusTypeDef HAL_I2S_Transmit_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  342. HAL_StatusTypeDef HAL_I2S_Receive_DMA(I2S_HandleTypeDef *hi2s, uint16_t *pData, uint16_t Size);
  343. HAL_StatusTypeDef HAL_I2S_DMAPause(I2S_HandleTypeDef *hi2s);
  344. HAL_StatusTypeDef HAL_I2S_DMAResume(I2S_HandleTypeDef *hi2s);
  345. HAL_StatusTypeDef HAL_I2S_DMAStop(I2S_HandleTypeDef *hi2s);
  346. /* Peripheral Control and State functions **************************************/
  347. HAL_I2S_StateTypeDef HAL_I2S_GetState(I2S_HandleTypeDef *hi2s);
  348. uint32_t HAL_I2S_GetError(I2S_HandleTypeDef *hi2s);
  349. /* Callbacks used in non blocking modes (Interrupt and DMA) *******************/
  350. void HAL_I2S_TxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  351. void HAL_I2S_TxCpltCallback(I2S_HandleTypeDef *hi2s);
  352. void HAL_I2S_RxHalfCpltCallback(I2S_HandleTypeDef *hi2s);
  353. void HAL_I2S_RxCpltCallback(I2S_HandleTypeDef *hi2s);
  354. void HAL_I2S_ErrorCallback(I2S_HandleTypeDef *hi2s);
  355. /**
  356. * @}
  357. */
  358. /**
  359. * @}
  360. */
  361. /* Private types -------------------------------------------------------------*/
  362. /* Private variables ---------------------------------------------------------*/
  363. /* Private constants ---------------------------------------------------------*/
  364. /** @defgroup I2S_Private_Constants I2S Private Constants
  365. * @{
  366. */
  367. /**
  368. * @}
  369. */
  370. /* Private macros ------------------------------------------------------------*/
  371. /** @defgroup I2S_Private_Macros I2S Private Macros
  372. * @{
  373. */
  374. #define IS_I2S_CLOCKSOURCE(CLOCK) (((CLOCK) == I2S_CLOCK_EXTERNAL) || \
  375. ((CLOCK) == I2S_CLOCK_PLLR) ||\
  376. ((CLOCK) == I2S_CLOCK_PLLSRC) ||\
  377. ((CLOCK) == I2S_CLOCK_PLL))
  378. #define IS_I2S_MODE(MODE) (((MODE) == I2S_MODE_SLAVE_TX) || \
  379. ((MODE) == I2S_MODE_SLAVE_RX) || \
  380. ((MODE) == I2S_MODE_MASTER_TX) || \
  381. ((MODE) == I2S_MODE_MASTER_RX))
  382. #define IS_I2S_STANDARD(STANDARD) (((STANDARD) == I2S_STANDARD_PHILIPS) || \
  383. ((STANDARD) == I2S_STANDARD_MSB) || \
  384. ((STANDARD) == I2S_STANDARD_LSB) || \
  385. ((STANDARD) == I2S_STANDARD_PCM_SHORT) || \
  386. ((STANDARD) == I2S_STANDARD_PCM_LONG))
  387. #define IS_I2S_DATA_FORMAT(FORMAT) (((FORMAT) == I2S_DATAFORMAT_16B) || \
  388. ((FORMAT) == I2S_DATAFORMAT_16B_EXTENDED) || \
  389. ((FORMAT) == I2S_DATAFORMAT_24B) || \
  390. ((FORMAT) == I2S_DATAFORMAT_32B))
  391. #define IS_I2S_MCLK_OUTPUT(OUTPUT) (((OUTPUT) == I2S_MCLKOUTPUT_ENABLE) || \
  392. ((OUTPUT) == I2S_MCLKOUTPUT_DISABLE))
  393. #define IS_I2S_AUDIO_FREQ(FREQ) ((((FREQ) >= I2S_AUDIOFREQ_8K) && \
  394. ((FREQ) <= I2S_AUDIOFREQ_192K)) || \
  395. ((FREQ) == I2S_AUDIOFREQ_DEFAULT))
  396. #define IS_I2S_FULLDUPLEX_MODE(MODE) (((MODE) == I2S_FULLDUPLEXMODE_DISABLE) || \
  397. ((MODE) == I2S_FULLDUPLEXMODE_ENABLE))
  398. #define IS_I2S_CPOL(CPOL) (((CPOL) == I2S_CPOL_LOW) || \
  399. ((CPOL) == I2S_CPOL_HIGH))
  400. #define I2SxEXT(__INSTANCE__) ((__INSTANCE__) == (SPI2)? (SPI_TypeDef *)(I2S2ext_BASE): (SPI_TypeDef *)(I2S3ext_BASE))
  401. /**
  402. * @}
  403. */
  404. /* Private functions ---------------------------------------------------------*/
  405. /** @defgroup I2S_Private_Functions I2S Private Functions
  406. * @{
  407. */
  408. void I2S_DMATxCplt(DMA_HandleTypeDef *hdma);
  409. void I2S_DMATxHalfCplt(DMA_HandleTypeDef *hdma);
  410. void I2S_DMARxCplt(DMA_HandleTypeDef *hdma);
  411. void I2S_DMARxHalfCplt(DMA_HandleTypeDef *hdma);
  412. void I2S_DMAError(DMA_HandleTypeDef *hdma);
  413. HAL_StatusTypeDef I2S_WaitFlagStateUntilTimeout(I2S_HandleTypeDef *hi2s, uint32_t Flag, uint32_t Status, uint32_t Timeout);
  414. HAL_StatusTypeDef I2S_Transmit_IT(I2S_HandleTypeDef *hi2s);
  415. HAL_StatusTypeDef I2S_Receive_IT(I2S_HandleTypeDef *hi2s);
  416. /**
  417. * @}
  418. */
  419. /**
  420. * @}
  421. */
  422. /**
  423. * @}
  424. */
  425. #ifdef __cplusplus
  426. }
  427. #endif
  428. #endif /* __STM32F4xx_HAL_I2S_H */
  429. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/