Home
last modified time | relevance | path

Searched refs:hmdmatx (Results 1 – 6 of 6) sorted by relevance

/hal_stm32-3.5.0/stm32cube/stm32mp1xx/drivers/src/
Dstm32mp1xx_hal_i2c.c410 … (__HANDLE__)->hmdmatx->Instance)->CBNDTR))
1942 else if (hi2c->hmdmatx != NULL) in HAL_I2C_Master_Transmit_DMA()
1945 hi2c->hmdmatx->XferCpltCallback = I2C_MDMAMasterTransmitCplt; in HAL_I2C_Master_Transmit_DMA()
1948 hi2c->hmdmatx->XferErrorCallback = I2C_MDMAError; in HAL_I2C_Master_Transmit_DMA()
1951 hi2c->hmdmatx->XferAbortCallback = NULL; in HAL_I2C_Master_Transmit_DMA()
1954 … dmaxferstatus = HAL_MDMA_Start_IT(hi2c->hmdmatx, (uint32_t)pData, (uint32_t)&hi2c->Instance->TXDR, in HAL_I2C_Master_Transmit_DMA()
2254 else if (hi2c->hmdmatx != NULL) in HAL_I2C_Slave_Transmit_DMA()
2257 hi2c->hmdmatx->XferCpltCallback = I2C_MDMASlaveTransmitCplt; in HAL_I2C_Slave_Transmit_DMA()
2260 hi2c->hmdmatx->XferErrorCallback = I2C_MDMAError; in HAL_I2C_Slave_Transmit_DMA()
2263 hi2c->hmdmatx->XferAbortCallback = NULL; in HAL_I2C_Slave_Transmit_DMA()
[all …]
Dstm32mp1xx_hal_usart.c1459 if (husart->hmdmatx != NULL) in HAL_USART_Transmit_DMA()
1462 husart->hmdmatx->XferCpltCallback = USART_MDMATransmitCplt; in HAL_USART_Transmit_DMA()
1465 husart->hmdmatx->XferErrorCallback = USART_MDMAError; in HAL_USART_Transmit_DMA()
1469 …status = HAL_MDMA_Start_IT(husart->hmdmatx, *(const uint32_t *)tmp, (uint32_t)&husart->Instance->T… in HAL_USART_Transmit_DMA()
1588 if (husart->hmdmatx != NULL) in HAL_USART_Receive_DMA()
1590 husart->hmdmatx->XferErrorCallback = NULL; in HAL_USART_Receive_DMA()
1591 husart->hmdmatx->XferCpltCallback = NULL; in HAL_USART_Receive_DMA()
1592 …status = HAL_MDMA_Start_IT(husart->hmdmatx, *(uint32_t *)tmp, (uint32_t)&husart->Instance->TDR, Si… in HAL_USART_Receive_DMA()
1728 if ((husart->hmdmarx != NULL) || (husart->hmdmatx != NULL)) in HAL_USART_TransmitReceive_DMA()
1734 husart->hmdmatx->XferCpltCallback = USART_MDMATransmitCplt; in HAL_USART_TransmitReceive_DMA()
[all …]
Dstm32mp1xx_hal_uart.c1416 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()
[all …]
/hal_stm32-3.5.0/stm32cube/stm32mp1xx/drivers/include/
Dstm32mp1xx_hal_usart.h163 MDMA_HandleTypeDef *hmdmatx; /*!< USART Tx MDMA Handle parameters */ member
Dstm32mp1xx_hal_i2c.h211 MDMA_HandleTypeDef *hmdmatx; /*!< I2C Tx MDMA handle parameters */ member
Dstm32mp1xx_hal_uart.h227 MDMA_HandleTypeDef *hmdmatx; /*!< UART Tx MDMA Handle parameters */ member