Home
last modified time | relevance | path

Searched refs:endpointAddr (Results 1 – 5 of 5) sorted by relevance

/hal_infineon-3.4.0/mtb-pdl-cat1/drivers/include/
Dcy_usbfs_dev_drv_pvt.h140 #define EPADDR2EP(endpointAddr) CY_USBFS_DEV_DRV_EPADDR2EP(endpointAddr) argument
141 #define EPADDR2PHY(endpointAddr) CY_USBFS_DEV_DRV_EPADDR2PHY(endpointAddr) argument
142 #define IS_EP_DIR_IN(endpointAddr) CY_USBFS_DEV_DRV_IS_EP_DIR_IN(endpointAddr) argument
143 #define IS_EP_DIR_OUT(endpointAddr) CY_USBFS_DEV_DRV_IS_EP_DIR_OUT(endpointAddr) argument
Dcy_usbfs_dev_drv.h877 uint8_t endpointAddr; /**< The endpoint address (number plus direction bit) */ member
900 uint32_t endpointAddr,
1201 uint32_t endpointAddr,
1430 #define CY_USBFS_DEV_DRV_EPADDR2EP(endpointAddr) ((uint32_t) (endpointAddr) & 0x0FU) argument
1431 #define CY_USBFS_DEV_DRV_IS_EP_DIR_IN(endpointAddr) (0U != ((endpointAddr) & 0x80U)) argument
1432 #define CY_USBFS_DEV_DRV_IS_EP_DIR_OUT(endpointAddr) (0U == ((endpointAddr) & 0x80U)) argument
1433 …define CY_USBFS_DEV_DRV_EPADDR2PHY(endpointAddr) CY_USBFS_DEV_DRV_EP2PHY(CY_USBFS_DEV_DRV_EP… argument
2059 uint32_t endpoint = CY_USBFS_DEV_DRV_EPADDR2EP(config->endpointAddr); in Cy_USBFS_Dev_Drv_AddEndpoint()
/hal_infineon-3.4.0/mtb-pdl-cat1/drivers/source/
Dcy_usbfs_dev_drv_io.c337 uint32_t endpoint = EPADDR2PHY(config->endpointAddr); in AddEndpointHwBuffer()
363 bool inDirection = IS_EP_DIR_IN(config->endpointAddr); in AddEndpointHwBuffer()
367 endpointData->address = config->endpointAddr; in AddEndpointHwBuffer()
444 uint32_t endpointAddr, in Cy_USBFS_Dev_Drv_RemoveEndpoint() argument
447 uint32_t endpoint = EPADDR2EP(endpointAddr); in Cy_USBFS_Dev_Drv_RemoveEndpoint()
Dcy_usbfs_dev_drv_io_dma.c673 uint32_t endpoint = EPADDR2PHY(config->endpointAddr); in AddEndpointRamBuffer()
701 bool inDirection = IS_EP_DIR_IN(config->endpointAddr); in AddEndpointRamBuffer()
705 endpointData->address = config->endpointAddr; in AddEndpointRamBuffer()
/hal_infineon-3.4.0/mtb-hal-cat1/COMPONENT_PSOC6HAL/source/
Dcyhal_usb_dev.c638 ep_config.endpointAddr = (uint8_t) endpoint; in cyhal_usb_dev_endpoint_add()