HAL + 0/7 examples
CodeScope will show references to ETH_DMATXDESC_OWN from the following samples and libraries:
Examples
STM32469I_EVAL
Demonstrations
Applications
mbedTLS
STM324x9I_EVAL
Applications
mbedTLS
STM324xG_EVAL
Applications
mbedTLS
 
Symbols
loading...
Files
loading...

ETH_DMATXDESC_OWN macro

Bit definition of TDES0 register: DMA Tx descriptor status register OWN bit: descriptor is owned by DMA engine

Syntax

#define ETH_DMATXDESC_OWN 0x80000000U

Examples

ETH_DMATXDESC_OWN is referenced by 7 libraries and example projects.

References

LocationText
stm32f4xx_hal_eth.h:696
#define ETH_DMATXDESC_OWN 0x80000000U /*!< OWN bit: descriptor is owned by DMA engine */
stm32f4xx_hal_eth_legacy.h:763
#define ETH_DMATXDESC_OWN 0x80000000U /*!< OWN bit: descriptor is owned by DMA engine */
stm32f4xx_hal_eth.c:914
if(((heth->TxDesc)->Status & ETH_DMATXDESC_OWN) != (uint32_t)RESET)
stm32f4xx_hal_eth.c:945
heth->TxDesc->Status |= ETH_DMATXDESC_OWN;
stm32f4xx_hal_eth.c:974
heth->TxDesc->Status |= ETH_DMATXDESC_OWN;
stm32f4xx_hal_eth.c:989
while ((dmatxdesc->DESC0 & ETH_DMATXDESC_OWN) != (uint32_t)RESET)
stm32f4xx_hal_eth.c:1470
if ((heth->Init.TxDesc[idx].DESC0 & ETH_DMATXDESC_OWN) == 0U)
stm32f4xx_hal_eth.c:3051
if ((READ_BIT(dmatxdesc->DESC0, ETH_DMATXDESC_OWN) == ETH_DMATXDESC_OWN)
stm32f4xx_hal_eth.c:3089
SET_BIT(dmatxdesc->DESC0, ETH_DMATXDESC_OWN);
stm32f4xx_hal_eth.c:3115
if ((READ_BIT(dmatxdesc->DESC0, ETH_DMATXDESC_OWN) == ETH_DMATXDESC_OWN)
stm32f4xx_hal_eth.c:3127
CLEAR_BIT(dmatxdesc->DESC0, ETH_DMATXDESC_OWN);
stm32f4xx_hal_eth.c:3154
SET_BIT(dmatxdesc->DESC0, ETH_DMATXDESC_OWN);