HAL + 0/7 examples
CodeScope will show references to ETH_DMARXDESC_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_DMARXDESC_OWN macro

Bit definition of RDES0 register: DMA Rx descriptor status register OWN bit: descriptor is owned by DMA engine

Syntax

#define ETH_DMARXDESC_OWN 0x80000000U

Examples

ETH_DMARXDESC_OWN is referenced by 7 libraries and example projects.

References

LocationText
stm32f4xx_hal_eth.h:779
#define ETH_DMARXDESC_OWN 0x80000000U /*!< OWN bit: descriptor is owned by DMA engine */
stm32f4xx_hal_eth_legacy.h:844
#define ETH_DMARXDESC_OWN 0x80000000U /*!< OWN bit: descriptor is owned by DMA engine */
stm32f4xx_hal_eth.c:621
DMARxDesc->Status = ETH_DMARXDESC_OWN;
stm32f4xx_hal_eth.c:1017
if(((heth->RxDesc->Status & ETH_DMARXDESC_OWN) == (uint32_t)RESET))
stm32f4xx_hal_eth.c:1096
while (((heth->RxDesc->Status & ETH_DMARXDESC_OWN) == (uint32_t)RESET) && (descriptorscancounter < ETH_RXBUFNB))
stm32f4xx_hal_eth.c:1105
while ((READ_BIT(dmarxdesc->DESC0, ETH_DMARXDESC_OWN) == (uint32_t)RESET) && (desccnt < desccntmax)
stm32f4xx_hal_eth.c:1242
SET_BIT(dmarxdesc->DESC0, ETH_DMARXDESC_OWN);
stm32f4xx_hal_eth.c:2998
dmarxdesc->DESC0 = ETH_DMARXDESC_OWN;