Lines Matching +full:host +full:- +full:only

2  * Copyright (c) 2016 - 2018, Nordic Semiconductor ASA
138 NRFX_USBD_EVT_WUREQ, /**< Wakeup request - the USBD peripheral is ready to generate
141 NRFX_USBD_EVT_EPTRANSFER, /**< For Rx (OUT: Host->Device):
145 * For Tx (IN: Device->Host):
160 …NRFX_USBD_EP_WAITING, /**< Data received, no buffer prepared already - waiting for configured tra…
166 * When this error is reported - data is left inside endpoint buffer.
237 NRFX_USBD_TRANSFER_ZLP_FLAG = 1U << 0, //!< Add a zero-length packet.
244 * It is used by internal built-in feeders and consumers.
292 * TX (Device->Host) endpoint transfer.
295 * - The size of the transfer provided by this function is limited to a single endpoint buffer.
297 * - Flash transfers are not automatically supported- you must copy them to the RAM buffer before.
304 * Required only if the function returns true.
308 * @retval false The current transfer is the last one - you do not need to call
322 * RX (Host->Device) endpoint transfer.
328 * Required only if the function returns true.
333 * @retval false Current transfer is the last one - you do not need to call
408 * Interrupts and USB pins pull-up would stay disabled until @ref nrfx_usbd_start
428 * Also only after calling this function host sees new connected device.
430 * Call this function when USBD power LDO regulator is ready - on USBPWRRDY event
449 * This function disables USBD pull-up and interrupts.
454 * This function can also be used to logically disconnect USB from the HOST that
507 * This may take 0-5&nbsp;ms depending on how long the SUSPEND state was kept on the USB line.
512 * @note Do not expect only @ref NRFX_USBD_EVT_WUREQ event.
519 * @retval false No WakeUp procedure started - bus is already active.
534 * @brief Enable only interrupts that should be processed in SUSPEND mode.
537 * It enables only the interrupts that can be properly processed without stable HFCLK.
644 * This is asynchronous function - it finishes immediately after configuration
672 * @param[in] p_handler Transfer handler - feeder for IN direction and consumer for
731 * - OUT (TX) endpoint: Last uploaded data is still in endpoint and is waiting
732 * to be received by the host.
733 * - IN (RX) endpoint: Endpoint is ready to receive data from the host
736 * - OUT (TX) endpoint: New data can be uploaded.
737 * - IN (RX) endpoint: New data can be downloaded using @ref nrfx_usbd_ep_transfer
751 * the host.
768 * In endpoint (transmitting) would not be cleared - it gives possibility to
808 * Clears only OUT endpoint to be able to take another OUT data token.
841 * @retval NRFX_USBD_EPOUT0 Expecting OUT (Host->Device) direction or no data.
842 * @retval NRFX_USBD_EPIN0 Expecting IN (Device->Host) direction.