Lines Matching refs:hmdmatx

1416     if (huart->hmdmatx != NULL)  in HAL_UART_Transmit_DMA()
1419 huart->hmdmatx->XferCpltCallback = UART_MDMATransmitCplt; in HAL_UART_Transmit_DMA()
1422 huart->hmdmatx->XferErrorCallback = UART_MDMAError; in HAL_UART_Transmit_DMA()
1425 huart->hmdmatx->XferAbortCallback = NULL; in HAL_UART_Transmit_DMA()
1428 …if (HAL_MDMA_Start_IT(huart->hmdmatx, (uint32_t)huart->pTxBuffPtr, (uint32_t)&huart->Instance->TDR… in HAL_UART_Transmit_DMA()
1669 if (huart->hmdmatx != NULL) in HAL_UART_DMAStop()
1671 if (HAL_MDMA_Abort(huart->hmdmatx) != HAL_OK) in HAL_UART_DMAStop()
1673 if (HAL_MDMA_GetError(huart->hmdmatx) == HAL_MDMA_ERROR_TIMEOUT) in HAL_UART_DMAStop()
1773 if (huart->hmdmatx != NULL) in HAL_UART_Abort()
1777 huart->hmdmatx->XferAbortCallback = NULL; in HAL_UART_Abort()
1779 if (HAL_MDMA_Abort(huart->hmdmatx) != HAL_OK) in HAL_UART_Abort()
1781 if (HAL_MDMA_GetError(huart->hmdmatx) == HAL_MDMA_ERROR_TIMEOUT) in HAL_UART_Abort()
1906 if (huart->hmdmatx != NULL) in HAL_UART_AbortTransmit()
1910 huart->hmdmatx->XferAbortCallback = NULL; in HAL_UART_AbortTransmit()
1912 if (HAL_MDMA_Abort(huart->hmdmatx) != HAL_OK) in HAL_UART_AbortTransmit()
1914 if (HAL_MDMA_GetError(huart->hmdmatx) == HAL_MDMA_ERROR_TIMEOUT) in HAL_UART_AbortTransmit()
2073 if (huart->hmdmatx != NULL) in HAL_UART_Abort_IT()
2079 huart->hmdmatx->XferAbortCallback = UART_MDMATxAbortCallback; in HAL_UART_Abort_IT()
2083 huart->hmdmatx->XferAbortCallback = NULL; in HAL_UART_Abort_IT()
2126 if (huart->hmdmatx != NULL) in HAL_UART_Abort_IT()
2132 if (HAL_MDMA_Abort_IT(huart->hmdmatx) != HAL_OK) in HAL_UART_Abort_IT()
2134 huart->hmdmatx->XferAbortCallback = NULL; in HAL_UART_Abort_IT()
2271 else if (huart->hmdmatx != NULL) in HAL_UART_AbortTransmit_IT()
2275 huart->hmdmatx->XferAbortCallback = UART_MDMATxOnlyAbortCallback; in HAL_UART_AbortTransmit_IT()
2278 if (HAL_MDMA_Abort_IT(huart->hmdmatx) != HAL_OK) in HAL_UART_AbortTransmit_IT()
2281 huart->hmdmatx->XferAbortCallback(huart->hmdmatx); in HAL_UART_AbortTransmit_IT()
3973 huart->hmdmatx->XferAbortCallback = NULL; in UART_MDMATxAbortCallback()
4023 if (huart->hmdmatx != NULL) in UART_MDMARxAbortCallback()
4025 if (huart->hmdmatx->XferAbortCallback != NULL) in UART_MDMARxAbortCallback()