Searched refs:I2S_HandleTypeDef (Results 1 – 9 of 9) sorted by relevance
| /bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Inc/ |
| A D | stm32l1xx_hal_i2s.h | 133 } I2S_HandleTypeDef; typedef 411 HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s); 413 void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s); 414 void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s); 437 void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s); 448 void HAL_I2S_TxHalfCpltCallback(I2S_HandleTypeDef *hi2s); 449 void HAL_I2S_TxCpltCallback(I2S_HandleTypeDef *hi2s); 450 void HAL_I2S_RxHalfCpltCallback(I2S_HandleTypeDef *hi2s); 451 void HAL_I2S_RxCpltCallback(I2S_HandleTypeDef *hi2s); 452 void HAL_I2S_ErrorCallback(I2S_HandleTypeDef *hi2s); [all …]
|
| /bsp/acm32/acm32f4xx-nucleo/libraries/HAL_Driver/Inc/ |
| A D | HAL_I2S.h | 184 }I2S_HandleTypeDef; typedef 221 void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s); 224 void HAL_I2S_MspInit(I2S_HandleTypeDef *hspi); 227 HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s); 230 HAL_StatusTypeDef HAL_I2S_Transmit(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Size… 233 HAL_StatusTypeDef HAL_I2S_Receive(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Size,… 236 HAL_StatusTypeDef HAL_I2S_Transmit_IT(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_S… 239 HAL_StatusTypeDef HAL_I2S_Receive_IT(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Si… 242 HAL_StatusTypeDef HAL_I2S_Transmit_DMA(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_… 245 HAL_StatusTypeDef HAL_I2S_Receive_DMA(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_S…
|
| /bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Src/ |
| A D | stm32l1xx_hal_i2s.c | 470 __weak void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s) in HAL_I2S_MspInit() 486 __weak void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s) in HAL_I2S_MspDeInit() 1447 void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s) in HAL_I2S_IRQHandler() 1618 uint32_t HAL_I2S_GetError(I2S_HandleTypeDef *hi2s) in HAL_I2S_GetError() 1641 …I2S_HandleTypeDef *hi2s = (I2S_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; /* Derogation … in I2S_DMATxCplt() 1668 …I2S_HandleTypeDef *hi2s = (I2S_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; /* Derogation … in I2S_DMATxHalfCplt() 1686 …I2S_HandleTypeDef *hi2s = (I2S_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; /* Derogation … in I2S_DMARxCplt() 1712 …I2S_HandleTypeDef *hi2s = (I2S_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; /* Derogation … in I2S_DMARxHalfCplt() 1730 …I2S_HandleTypeDef *hi2s = (I2S_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent; /* Derogation … in I2S_DMAError() 1755 static void I2S_Transmit_IT(I2S_HandleTypeDef *hi2s) in I2S_Transmit_IT() [all …]
|
| /bsp/acm32/acm32f4xx-nucleo/libraries/HAL_Driver/Src/ |
| A D | HAL_I2S.c | 23 void HAL_I2S_IRQHandler(I2S_HandleTypeDef *hi2s) in HAL_I2S_IRQHandler() 66 __weak void HAL_I2S_MspInit(I2S_HandleTypeDef *hi2s) in HAL_I2S_MspInit() 106 __weak void HAL_I2S_MspDeInit(I2S_HandleTypeDef *hi2s) in HAL_I2S_MspDeInit() 138 HAL_StatusTypeDef HAL_I2S_Init(I2S_HandleTypeDef *hi2s) in HAL_I2S_Init() 183 HAL_StatusTypeDef HAL_I2S_DeInit(I2S_HandleTypeDef *hi2s) in HAL_I2S_DeInit() 210 HAL_StatusTypeDef HAL_I2S_Transmit(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Size… in HAL_I2S_Transmit() 275 HAL_StatusTypeDef HAL_I2S_Receive(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Size,… in HAL_I2S_Receive() 343 HAL_StatusTypeDef HAL_I2S_Transmit_IT(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_S… in HAL_I2S_Transmit_IT() 378 HAL_StatusTypeDef HAL_I2S_Receive_IT(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_Si… in HAL_I2S_Receive_IT() 424 HAL_StatusTypeDef HAL_I2S_Transmit_DMA(I2S_HandleTypeDef *hi2s, uint32_t *fp32_Data, uint32_t fu32_… in HAL_I2S_Transmit_DMA() [all …]
|
| /bsp/stm32/stm32f469-st-disco/board/CubeMX_Config/Src/ |
| A D | stm32f4xx_it.c | 59 extern I2S_HandleTypeDef hi2s3;
|
| A D | stm32f4xx_hal_msp.c | 307 void HAL_I2S_MspInit(I2S_HandleTypeDef* hi2s) in HAL_I2S_MspInit() 363 void HAL_I2S_MspDeInit(I2S_HandleTypeDef* hi2s) in HAL_I2S_MspDeInit()
|
| /bsp/stm32/stm32f407-armfly-v5/board/CubeMX_Config/Src/ |
| A D | stm32f4xx_hal_msp.c | 149 void HAL_I2S_MspInit(I2S_HandleTypeDef* hi2s) in HAL_I2S_MspInit() 204 void HAL_I2S_MspDeInit(I2S_HandleTypeDef* hi2s) in HAL_I2S_MspDeInit()
|
| /bsp/stm32/stm32f407-rt-spark/board/ports/audio/ |
| A D | drv_mic.c | 30 static I2S_HandleTypeDef I2S3_Handler = {0};
|
| A D | drv_sound.c | 30 static I2S_HandleTypeDef I2S3_Handler = {0};
|
Completed in 18 milliseconds