Home
last modified time | relevance | path

Searched refs:nrf_usbd_common_ep_t (Results 1 – 3 of 3) sorted by relevance

/Zephyr-latest/drivers/usb/common/nrf_usbd_common/
Dnrf_usbd_common.h59 #define NRF_USBD_COMMON_EPIN(n) ((nrf_usbd_common_ep_t)(0x80 | n))
69 #define NRF_USBD_COMMON_EPOUT(n) ((nrf_usbd_common_ep_t)(n))
98 } nrf_usbd_common_ep_t; typedef
169 nrf_usbd_common_ep_t ep; /**< Endpoint number. */
172 nrf_usbd_common_ep_t ep; /**< Endpoint number. */
445 void nrf_usbd_common_ep_max_packet_size_set(nrf_usbd_common_ep_t ep, uint16_t size);
456 uint16_t nrf_usbd_common_ep_max_packet_size_get(nrf_usbd_common_ep_t ep);
466 bool nrf_usbd_common_ep_enable_check(nrf_usbd_common_ep_t ep);
480 void nrf_usbd_common_ep_enable(nrf_usbd_common_ep_t ep);
489 void nrf_usbd_common_ep_disable(nrf_usbd_common_ep_t ep);
[all …]
Dnrf_usbd_common.c196 static nrf_usbd_common_ep_t m_last_setup_dir;
225 static nrf_usbd_common_ep_t dma_ep;
285 static volatile uint32_t *usbd_ep_to_endevent(nrf_usbd_common_ep_t ep) in usbd_ep_to_endevent()
304 static uint32_t usbd_ep_amount_get(nrf_usbd_common_ep_t ep) in usbd_ep_amount_get()
323 static void usbd_ep_dma_start(nrf_usbd_common_ep_t ep, uint32_t addr, size_t len) in usbd_ep_dma_start()
414 static inline uint8_t ep_to_hal(nrf_usbd_common_ep_t ep) in ep_to_hal()
428 static inline usbd_ep_state_t *ep_state_access(nrf_usbd_common_ep_t ep) in ep_state_access()
447 static inline uint8_t ep2bit(nrf_usbd_common_ep_t ep) in ep2bit()
462 static inline nrf_usbd_common_ep_t bit2ep(uint8_t bitpos) in bit2ep()
466 return (nrf_usbd_common_ep_t)((bitpos >= NRF_USBD_COMMON_EPOUT_BITPOS_0) in bit2ep()
[all …]
/Zephyr-latest/drivers/usb/device/
Dusb_dc_nrfx.c293 static inline nrf_usbd_common_ep_t ep_addr_to_nrfx(uint8_t ep) in ep_addr_to_nrfx()
295 return (nrf_usbd_common_ep_t)ep; in ep_addr_to_nrfx()
298 static inline uint8_t nrfx_addr_to_ep(nrf_usbd_common_ep_t ep) in nrfx_addr_to_ep()