Home
last modified time | relevance | path

Searched refs:HAL_DMA_Abort (Results 1 – 23 of 23) sorted by relevance

/bsp/acm32/acm32f4xx-nucleo/libraries/HAL_Driver/Src/
A DHAL_DAC.c464 status = HAL_DMA_Abort(hdac->DMA_Handle1); in HAL_DAC_Stop_DMA()
471 status = HAL_DMA_Abort(hdac->DMA_Handle2); in HAL_DAC_Stop_DMA()
480 status = HAL_DMA_Abort(hdac->DMA_Handle1)|HAL_DMA_Abort(hdac->DMA_Handle2); in HAL_DAC_Stop_DMA()
A DHAL_UART.c785 if(HAL_DMA_Abort(huart->HDMA_Tx)!=HAL_OK) in HAL_UART_Abort()
803 if(HAL_DMA_Abort(huart->HDMA_Rx)!=HAL_OK) in HAL_UART_Abort()
A DHAL_DMA.c367 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() function
A DHAL_ADC.c700 HAL_DMA_Abort(hadc->DMA_Handle); in HAL_ADC_Stop_DMA()
/bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Src/
A Dstm32l1xx_hal_irda.c1264 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_DMAStop()
1278 HAL_DMA_Abort(hirda->hdmarx); in HAL_IRDA_DMAStop()
1316 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_Abort()
1332 HAL_DMA_Abort(hirda->hdmarx); in HAL_IRDA_Abort()
1379 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_AbortTransmit()
1422 HAL_DMA_Abort(hirda->hdmarx); in HAL_IRDA_AbortReceive()
A Dstm32l1xx_hal_uart.c1575 HAL_DMA_Abort(huart->hdmatx); in HAL_UART_DMAStop()
1589 HAL_DMA_Abort(huart->hdmarx); in HAL_UART_DMAStop()
1880 if (HAL_DMA_Abort(huart->hdmatx) != HAL_OK) in HAL_UART_Abort()
1905 if (HAL_DMA_Abort(huart->hdmarx) != HAL_OK) in HAL_UART_Abort()
1962 if (HAL_DMA_Abort(huart->hdmatx) != HAL_OK) in HAL_UART_AbortTransmit()
2020 if (HAL_DMA_Abort(huart->hdmarx) != HAL_OK) in HAL_UART_AbortReceive()
2512 (void)HAL_DMA_Abort(huart->hdmarx); in HAL_UART_IRQHandler()
A Dstm32l1xx_hal_dac.c682 (void)HAL_DMA_Abort(hdac->DMA_Handle1); in HAL_DAC_Stop_DMA()
691 (void)HAL_DMA_Abort(hdac->DMA_Handle2); in HAL_DAC_Stop_DMA()
A Dstm32l1xx_hal_smartcard.c1118 HAL_DMA_Abort(hsc->hdmatx); in HAL_SMARTCARD_Abort()
1134 HAL_DMA_Abort(hsc->hdmarx); in HAL_SMARTCARD_Abort()
1181 HAL_DMA_Abort(hsc->hdmatx); in HAL_SMARTCARD_AbortTransmit()
1224 HAL_DMA_Abort(hsc->hdmarx); in HAL_SMARTCARD_AbortReceive()
A Dstm32l1xx_hal_usart.c1537 HAL_DMA_Abort(husart->hdmatx); in HAL_USART_DMAStop()
1553 HAL_DMA_Abort(husart->hdmarx); in HAL_USART_DMAStop()
1594 HAL_DMA_Abort(husart->hdmatx); in HAL_USART_Abort()
1610 HAL_DMA_Abort(husart->hdmarx); in HAL_USART_Abort()
A Dstm32l1xx_hal_i2s.c1362 if (HAL_OK != HAL_DMA_Abort(hi2s->hdmatx)) in HAL_I2S_DMAStop()
1404 if (HAL_OK != HAL_DMA_Abort(hi2s->hdmarx)) in HAL_I2S_DMAStop()
A Dstm32l1xx_hal_dma.c412 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() function
A Dstm32l1xx_hal_spi.c2061 if (HAL_DMA_Abort(hspi->hdmatx) != HAL_OK) in HAL_SPI_Abort()
2093 if (HAL_DMA_Abort(hspi->hdmarx) != HAL_OK) in HAL_SPI_Abort()
2363 if (HAL_OK != HAL_DMA_Abort(hspi->hdmatx)) in HAL_SPI_DMAStop()
2372 if (HAL_OK != HAL_DMA_Abort(hspi->hdmarx)) in HAL_SPI_DMAStop()
A Dstm32l1xx_hal_adc.c1631 HAL_DMA_Abort(hadc->DMA_Handle); in HAL_ADC_Stop_DMA()
A Dstm32l1xx_hal_sd.c2320 if(HAL_DMA_Abort(hsd->hdmatx) != HAL_OK) in HAL_SD_Abort()
2328 if(HAL_DMA_Abort(hsd->hdmarx) != HAL_OK) in HAL_SD_Abort()
/bsp/acm32/acm32f0x0-nucleo/libraries/HAL_Driver/Inc/
A DHAL_DMA.h273 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma);
/bsp/acm32/acm32f4xx-nucleo/libraries/HAL_Driver/Inc/
A DHAL_DMA.h292 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma);
/bsp/acm32/acm32f0x0-nucleo/libraries/HAL_Driver/Src/
A DHAL_LCD.c253 status = HAL_DMA_Abort(hlcd->DMA_Handle); in HAL_LCD_Stop_DMA()
A DHAL_UART.c783 if(HAL_DMA_Abort(huart->HDMA_Tx)!=HAL_OK) in HAL_UART_Abort()
801 if(HAL_DMA_Abort(huart->HDMA_Rx)!=HAL_OK) in HAL_UART_Abort()
A DHAL_DMA.c369 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma) in HAL_DMA_Abort() function
A DHAL_ADC.c759 HAL_DMA_Abort(hadc->DMA_Handle); in HAL_ADC_Stop_DMA()
/bsp/stm32/libraries/STM32L1xx_HAL/STM32L1xx_HAL_Driver/Inc/
A Dstm32l1xx_hal_dma.h574 HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma);
/bsp/stm32/libraries/HAL_Drivers/drivers/
A Ddrv_usart_v2.c241 if (HAL_DMA_Abort(&(uart->dma_rx.handle)) != HAL_OK) in stm32_control()
257 HAL_DMA_Abort(&(uart->dma_tx.handle)); in stm32_control()
A Ddrv_usart.c266 if (HAL_DMA_Abort(&(uart->dma_rx.handle)) != HAL_OK) in stm32_control()

Completed in 86 milliseconds