Home
last modified time | relevance | path

Searched refs:hdmatx (Results 1 – 25 of 32) sorted by relevance

12

/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/
A Dstm32f0xx_hal_smartcard.c869 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_Abort()
875 HAL_DMA_Abort(hsmartcard->hdmatx); in HAL_SMARTCARD_Abort()
943 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_AbortTransmit()
949 HAL_DMA_Abort(hsmartcard->hdmatx); in HAL_SMARTCARD_AbortTransmit()
1044 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_Abort_IT()
1079 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_Abort_IT()
1177 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_AbortTransmit_IT()
1187 hsmartcard->hdmatx->XferAbortCallback(hsmartcard->hdmatx); in HAL_SMARTCARD_AbortTransmit_IT()
1441 if(hsmartcard->hdmatx != NULL) in HAL_SMARTCARD_IRQHandler()
1451 hsmartcard->hdmatx->XferAbortCallback(hsmartcard->hdmatx); in HAL_SMARTCARD_IRQHandler()
[all …]
A Dstm32f0xx_hal_irda.c1013 if(hirda->hdmatx != NULL) in HAL_IRDA_DMAStop()
1015 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_DMAStop()
1064 if(hirda->hdmatx != NULL) in HAL_IRDA_Abort()
1070 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_Abort()
1131 if(hirda->hdmatx != NULL) in HAL_IRDA_AbortTransmit()
1137 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_AbortTransmit()
1223 if(hirda->hdmatx != NULL) in HAL_IRDA_Abort_IT()
1258 if(hirda->hdmatx != NULL) in HAL_IRDA_Abort_IT()
1349 if(hirda->hdmatx != NULL) in HAL_IRDA_AbortTransmit_IT()
1359 hirda->hdmatx->XferAbortCallback(hirda->hdmatx); in HAL_IRDA_AbortTransmit_IT()
[all …]
A Dstm32f0xx_hal_usart.c1110 husart->hdmatx->XferErrorCallback = NULL; in HAL_USART_Receive_DMA()
1112 husart->hdmatx->XferCpltCallback = NULL; in HAL_USART_Receive_DMA()
1338 if(husart->hdmatx != NULL) in HAL_USART_DMAStop()
1340 HAL_DMA_Abort(husart->hdmatx); in HAL_USART_DMAStop()
1378 if(husart->hdmatx != NULL) in HAL_USART_Abort()
1384 HAL_DMA_Abort(husart->hdmatx); in HAL_USART_Abort()
1445 if(husart->hdmatx != NULL) in HAL_USART_Abort_IT()
1480 if(husart->hdmatx != NULL) in HAL_USART_Abort_IT()
1646 if(husart->hdmatx != NULL) in HAL_USART_IRQHandler()
2058 husart->hdmatx->XferAbortCallback = NULL; in USART_DMATxAbortCallback()
[all …]
A Dstm32f0xx_hal_uart.c1208 if(huart->hdmatx != NULL) in HAL_UART_DMAStop()
1210 HAL_DMA_Abort(huart->hdmatx); in HAL_UART_DMAStop()
1258 if(huart->hdmatx != NULL) in HAL_UART_Abort()
1264 HAL_DMA_Abort(huart->hdmatx); in HAL_UART_Abort()
1324 if(huart->hdmatx != NULL) in HAL_UART_AbortTransmit()
1330 HAL_DMA_Abort(huart->hdmatx); in HAL_UART_AbortTransmit()
1414 if(huart->hdmatx != NULL) in HAL_UART_Abort_IT()
1449 if(huart->hdmatx != NULL) in HAL_UART_Abort_IT()
1539 if(huart->hdmatx != NULL) in HAL_UART_AbortTransmit_IT()
1549 huart->hdmatx->XferAbortCallback(huart->hdmatx); in HAL_UART_AbortTransmit_IT()
[all …]
A Dstm32f0xx_hal_spi.c1614 hspi->hdmatx->XferAbortCallback = NULL; in HAL_SPI_Transmit_DMA()
2042 if (hspi->hdmatx != NULL) in HAL_SPI_Abort()
2197 if (hspi->hdmatx != NULL) in HAL_SPI_Abort_IT()
2229 if (hspi->hdmatx != NULL) in HAL_SPI_Abort_IT()
2263 if (hspi->hdmatx != NULL) in HAL_SPI_Abort_IT()
2383 if (hspi->hdmatx != NULL) in HAL_SPI_DMAStop()
2385 HAL_DMA_Abort(hspi->hdmatx); in HAL_SPI_DMAStop()
2477 if (hspi->hdmatx != NULL) in HAL_SPI_IRQHandler()
2482 HAL_DMA_Abort_IT(hspi->hdmatx); in HAL_SPI_IRQHandler()
2988 hspi->hdmatx->XferAbortCallback = NULL; in SPI_DMATxAbortCallback()
[all …]
A Dstm32f0xx_hal_i2s.c786 hi2s->hdmatx->XferHalfCpltCallback = I2S_DMATxHalfCplt; in HAL_I2S_Transmit_DMA()
789 hi2s->hdmatx->XferCpltCallback = I2S_DMATxCplt; in HAL_I2S_Transmit_DMA()
792 hi2s->hdmatx->XferErrorCallback = I2S_DMAError; in HAL_I2S_Transmit_DMA()
795 …HAL_DMA_Start_IT(hi2s->hdmatx, (uint32_t)hi2s->pTxBuffPtr, (uint32_t)&hi2s->Instance->DR, hi2s->Tx… in HAL_I2S_Transmit_DMA()
993 if(hi2s->hdmatx != NULL) in HAL_I2S_DMAStop()
996 __HAL_DMA_DISABLE(hi2s->hdmatx); in HAL_I2S_DMAStop()
997 HAL_DMA_Abort(hi2s->hdmatx); in HAL_I2S_DMAStop()
A Dstm32f0xx_hal_i2c.c1426 hi2c->hdmatx->XferHalfCpltCallback = NULL; in HAL_I2C_Master_Transmit_DMA()
1427 hi2c->hdmatx->XferAbortCallback = NULL; in HAL_I2C_Master_Transmit_DMA()
1621 hi2c->hdmatx->XferErrorCallback = I2C_DMAError; in HAL_I2C_Slave_Transmit_DMA()
1624 hi2c->hdmatx->XferHalfCpltCallback = NULL; in HAL_I2C_Slave_Transmit_DMA()
1625 hi2c->hdmatx->XferAbortCallback = NULL; in HAL_I2C_Slave_Transmit_DMA()
2293 hi2c->hdmatx->XferErrorCallback = I2C_DMAError; in HAL_I2C_Mem_Write_DMA()
2296 hi2c->hdmatx->XferHalfCpltCallback = NULL; in HAL_I2C_Mem_Write_DMA()
2297 hi2c->hdmatx->XferAbortCallback = NULL; in HAL_I2C_Mem_Write_DMA()
4236 if (HAL_DMA_Abort_IT(hi2c->hdmatx) != HAL_OK) in I2C_ITError()
4239 hi2c->hdmatx->XferAbortCallback(hi2c->hdmatx); in I2C_ITError()
[all …]
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Src/
A Dstm32f7xx_hal_usart.c719 husart->hdmatx->XferCpltCallback = USART_DMATransmitCplt; in HAL_USART_Transmit_DMA()
722 husart->hdmatx->XferHalfCpltCallback = USART_DMATxHalfCplt; in HAL_USART_Transmit_DMA()
725 husart->hdmatx->XferErrorCallback = USART_DMAError; in HAL_USART_Transmit_DMA()
729 HAL_DMA_Start_IT(husart->hdmatx, *(uint32_t*)tmp, (uint32_t)&husart->Instance->TDR, Size); in HAL_USART_Transmit_DMA()
795 HAL_DMA_Start_IT(husart->hdmatx, *(uint32_t*)tmp, (uint32_t)&husart->Instance->TDR, Size); in HAL_USART_Receive_DMA()
849 husart->hdmatx->XferCpltCallback = USART_DMATransmitCplt; in HAL_USART_TransmitReceive_DMA()
852 husart->hdmatx->XferHalfCpltCallback = USART_DMATxHalfCplt; in HAL_USART_TransmitReceive_DMA()
855 husart->hdmatx->XferErrorCallback = USART_DMAError; in HAL_USART_TransmitReceive_DMA()
866 HAL_DMA_Start_IT(husart->hdmatx, *(uint32_t*)tmp, (uint32_t)&husart->Instance->TDR, Size); in HAL_USART_TransmitReceive_DMA()
972 if (husart->hdmatx != NULL) { in HAL_USART_DMAStop()
[all …]
A Dstm32f7xx_hal_i2s.c765 hi2s->hdmatx->XferHalfCpltCallback = I2S_DMATxHalfCplt; in HAL_I2S_Transmit_DMA()
768 hi2s->hdmatx->XferCpltCallback = I2S_DMATxCplt; in HAL_I2S_Transmit_DMA()
771 hi2s->hdmatx->XferErrorCallback = I2S_DMAError; in HAL_I2S_Transmit_DMA()
775 … HAL_DMA_Start_IT(hi2s->hdmatx, *(uint32_t*)tmp, (uint32_t)&hi2s->Instance->DR, hi2s->TxXferSize); in HAL_I2S_Transmit_DMA()
951 if (hi2s->hdmatx != NULL) { in HAL_I2S_DMAStop()
953 __HAL_DMA_DISABLE(hi2s->hdmatx); in HAL_I2S_DMAStop()
954 HAL_DMA_Abort(hi2s->hdmatx); in HAL_I2S_DMAStop()
A Dstm32f7xx_hal_spi.c1138 hspi->hdmatx->XferHalfCpltCallback = SPI_DMAHalfTransmitCplt; in HAL_SPI_Transmit_DMA()
1141 hspi->hdmatx->XferCpltCallback = SPI_DMATransmitCplt; in HAL_SPI_Transmit_DMA()
1144 hspi->hdmatx->XferErrorCallback = SPI_DMAError; in HAL_SPI_Transmit_DMA()
1160 …HAL_DMA_Start_IT(hspi->hdmatx, (uint32_t)hspi->pTxBuffPtr, (uint32_t)&hspi->Instance->DR, hspi->Tx… in HAL_SPI_Transmit_DMA()
1321 if (hspi->hdmatx->Init.MemDataAlignment == DMA_MDATAALIGN_HALFWORD) { in HAL_SPI_TransmitReceive_DMA()
1366 hspi->hdmatx->XferHalfCpltCallback = NULL; in HAL_SPI_TransmitReceive_DMA()
1367 hspi->hdmatx->XferCpltCallback = NULL; in HAL_SPI_TransmitReceive_DMA()
1371 hspi->hdmatx->XferErrorCallback = SPI_DMAError; in HAL_SPI_TransmitReceive_DMA()
1373 hspi->hdmatx->XferErrorCallback = NULL; in HAL_SPI_TransmitReceive_DMA()
1452 if (hspi->hdmatx != NULL) { in HAL_SPI_DMAStop()
[all …]
A Dstm32f7xx_hal_irda.c631 hirda->hdmatx->XferCpltCallback = IRDA_DMATransmitCplt; in HAL_IRDA_Transmit_DMA()
634 hirda->hdmatx->XferHalfCpltCallback = IRDA_DMATransmitHalfCplt; in HAL_IRDA_Transmit_DMA()
637 hirda->hdmatx->XferErrorCallback = IRDA_DMAError; in HAL_IRDA_Transmit_DMA()
641 HAL_DMA_Start_IT(hirda->hdmatx, *(uint32_t*)tmp, (uint32_t)&hirda->Instance->TDR, Size); in HAL_IRDA_Transmit_DMA()
800 if (hirda->hdmatx != NULL) { in HAL_IRDA_DMAStop()
801 HAL_DMA_Abort(hirda->hdmatx); in HAL_IRDA_DMAStop()
A Dstm32f7xx_hal_sai.c866 if (hsai->hdmatx != NULL) { in HAL_SAI_DMAStop()
867 HAL_DMA_Abort(hsai->hdmatx); in HAL_SAI_DMAStop()
897 if (hsai->hdmatx != NULL) { in HAL_SAI_Abort()
898 HAL_DMA_Abort(hsai->hdmatx); in HAL_SAI_Abort()
950 hsai->hdmatx->XferHalfCpltCallback = SAI_DMATxHalfCplt; in HAL_SAI_Transmit_DMA()
953 hsai->hdmatx->XferCpltCallback = SAI_DMATxCplt; in HAL_SAI_Transmit_DMA()
956 hsai->hdmatx->XferErrorCallback = SAI_DMAError; in HAL_SAI_Transmit_DMA()
960 … HAL_DMA_Start_IT(hsai->hdmatx, *(uint32_t*)tmp, (uint32_t)&hsai->Instance->DR, hsai->XferSize); in HAL_SAI_Transmit_DMA()
A Dstm32f7xx_hal_uart.c837 huart->hdmatx->XferCpltCallback = UART_DMATransmitCplt; in HAL_UART_Transmit_DMA()
840 huart->hdmatx->XferHalfCpltCallback = UART_DMATxHalfCplt; in HAL_UART_Transmit_DMA()
843 huart->hdmatx->XferErrorCallback = UART_DMAError; in HAL_UART_Transmit_DMA()
847 HAL_DMA_Start_IT(huart->hdmatx, *(uint32_t*)tmp, (uint32_t)&huart->Instance->TDR, Size); in HAL_UART_Transmit_DMA()
1011 if (huart->hdmatx != NULL) { in HAL_UART_DMAStop()
1012 HAL_DMA_Abort(huart->hdmatx); in HAL_UART_DMAStop()
A Dstm32f7xx_hal_i2c.c1130 hi2c->hdmatx->XferCpltCallback = I2C_DMAMasterTransmitCplt; in HAL_I2C_Master_Transmit_DMA()
1133 hi2c->hdmatx->XferErrorCallback = I2C_DMAError; in HAL_I2C_Master_Transmit_DMA()
1136 … HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); in HAL_I2C_Master_Transmit_DMA()
1265 hi2c->hdmatx->XferCpltCallback = I2C_DMASlaveTransmitCplt; in HAL_I2C_Slave_Transmit_DMA()
1268 hi2c->hdmatx->XferErrorCallback = I2C_DMAError; in HAL_I2C_Slave_Transmit_DMA()
1271 … HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); in HAL_I2C_Slave_Transmit_DMA()
1807 hi2c->hdmatx->XferCpltCallback = I2C_DMAMemTransmitCplt; in HAL_I2C_Mem_Write_DMA()
1810 hi2c->hdmatx->XferErrorCallback = I2C_DMAError; in HAL_I2C_Mem_Write_DMA()
1813 … HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, hi2c->XferSize); in HAL_I2C_Mem_Write_DMA()
2735 …HAL_DMA_Start_IT(hi2c->hdmatx, (uint32_t)hi2c->pBuffPtr, (uint32_t)&hi2c->Instance->TXDR, hi2c->Xf… in I2C_DMAMasterTransmitCplt()
[all …]
A Dstm32f7xx_hal_smartcard.c568 hsc->hdmatx->XferCpltCallback = SMARTCARD_DMATransmitCplt; in HAL_SMARTCARD_Transmit_DMA()
571 hsc->hdmatx->XferErrorCallback = SMARTCARD_DMAError; in HAL_SMARTCARD_Transmit_DMA()
575 HAL_DMA_Start_IT(hsc->hdmatx, *(uint32_t*)tmp, (uint32_t)&hsc->Instance->TDR, Size); in HAL_SMARTCARD_Transmit_DMA()
A Dstm32f7xx_hal_sd.c917 hsd->hdmatx->XferCpltCallback = SD_DMA_TxCplt; in HAL_SD_WriteBlocks_DMA()
918 hsd->hdmatx->XferErrorCallback = SD_DMA_TxError; in HAL_SD_WriteBlocks_DMA()
921 …HAL_DMA_Start_IT(hsd->hdmatx, (uint32_t)pWriteBuffer, (uint32_t)&hsd->Instance->FIFO, (uint32_t)(B… in HAL_SD_WriteBlocks_DMA()
2054 HAL_SD_DMA_TxCpltCallback(hsd->hdmatx); in SD_DMA_TxCplt()
2068 HAL_SD_DMA_TxErrorCallback(hsd->hdmatx); in SD_DMA_TxError()
/lk-master/external/platform/stm32f0xx/STM32F0xx_HAL_Driver/inc/
A Dstm32f0xx_hal_i2s.h130 DMA_HandleTypeDef *hdmatx; /*!< I2S Tx DMA handle parameters */ member
A Dstm32f0xx_hal_usart.h147 DMA_HandleTypeDef *hdmatx; /*!< USART Tx DMA Handle parameters */ member
A Dstm32f0xx_hal_irda.h188 DMA_HandleTypeDef *hdmatx; /*!< IRDA Tx DMA Handle parameters */ member
A Dstm32f0xx_hal_spi.h156 DMA_HandleTypeDef *hdmatx; /*!< SPI Tx DMA Handle parameters */ member
/lk-master/external/platform/stm32f7xx/STM32F7xx_HAL_Driver/Inc/
A Dstm32f7xx_hal_i2s.h128 DMA_HandleTypeDef *hdmatx; /* I2S Tx DMA handle parameters */ member
A Dstm32f7xx_hal_irda.h137 DMA_HandleTypeDef *hdmatx; /* IRDA Tx DMA Handle parameters */ member
A Dstm32f7xx_hal_usart.h150 DMA_HandleTypeDef *hdmatx; /*!< USART Tx DMA Handle parameters */ member
A Dstm32f7xx_hal_i2c.h152 DMA_HandleTypeDef *hdmatx; /*!< I2C Tx DMA handle parameters */ member
A Dstm32f7xx_hal_sd.h94 …DMA_HandleTypeDef *hdmatx; /*!< SD Tx DMA handle parameters … member

Completed in 67 milliseconds

12