| /hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/device/ |
| D | usb_device_dci.c | 53 uint8_t endpointAddress, 252 uint8_t endpointAddress, in USB_DeviceTransfer() argument 258 uint8_t endpoint = endpointAddress & USB_ENDPOINT_NUMBER_MASK; in USB_DeviceTransfer() 259 …uint8_t direction = (endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_M… in USB_DeviceTransfer() 282 if (0U != (endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK)) in USB_DeviceTransfer() 286 …us = deviceHandle->controllerInterface->deviceSend(deviceHandle->controllerHandle, endpointAddress, in USB_DeviceTransfer() 293 …us = deviceHandle->controllerInterface->deviceRecv(deviceHandle->controllerHandle, endpointAddress, in USB_DeviceTransfer() 978 usb_status_t USB_DeviceSendRequest(usb_device_handle handle, uint8_t endpointAddress, uint8_t *buff… in USB_DeviceSendRequest() argument 982 …(endpointAddress & USB_ENDPOINT_NUMBER_MASK) | (USB_IN << USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTIO… in USB_DeviceSendRequest() 1010 usb_status_t USB_DeviceRecvRequest(usb_device_handle handle, uint8_t endpointAddress, uint8_t *buff… in USB_DeviceRecvRequest() argument [all …]
|
| D | usb_device.h | 195 uint8_t endpointAddress; /*!< Endpoint address*/ member 204 uint8_t endpointAddress; /*!< Endpoint address */ member 312 uint8_t endpointAddress, 342 uint8_t endpointAddress, 358 extern usb_status_t USB_DeviceCancel(usb_device_handle handle, uint8_t endpointAddress); 395 extern usb_status_t USB_DeviceDeinitEndpoint(usb_device_handle handle, uint8_t endpointAddress); 410 extern usb_status_t USB_DeviceStallEndpoint(usb_device_handle handle, uint8_t endpointAddress); 425 extern usb_status_t USB_DeviceUnstallEndpoint(usb_device_handle handle, uint8_t endpointAddress);
|
| D | usb_device_mcux_drv_port.h | 74 uint8_t endpointAddress; /*!< Endpoint address*/ member 90 uint8_t endpointAddress, 96 uint8_t endpointAddress, 102 uint8_t endpointAddress); 138 uint8_t endpointAddress; /*!< Endpoint address */ member
|
| D | usb_device_ehci.c | 84 uint8_t endpointAddress, 247 uint32_t primeBit = 1UL << ((epInit->endpointAddress & USB_ENDPOINT_NUMBER_MASK) + in USB_DeviceEhciEndpointInit() 248 … ((epInit->endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> 0x03U)); in USB_DeviceEhciEndpointInit() 250 uint8_t endpoint = (epInit->endpointAddress & USB_ENDPOINT_NUMBER_MASK); in USB_DeviceEhciEndpointInit() 251 …uint8_t direction = (epInit->endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK… in USB_DeviceEhciEndpointInit() 258 if (kStatus_USB_Success != USB_DeviceEhciCancel(ehciState, epInit->endpointAddress)) in USB_DeviceEhciEndpointInit() 263 (void)USB_DeviceEhciCancel(ehciState, epInit->endpointAddress); in USB_DeviceEhciEndpointInit() 1055 uint8_t endpointAddress, 1061 uint32_t index = (((uint32_t)endpointAddress & USB_ENDPOINT_NUMBER_MASK) << 1U) | 1062 … (((uint32_t)endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> [all …]
|
| D | usb_device_khci.c | 280 uint8_t endpoint = (epInit->endpointAddress & USB_ENDPOINT_NUMBER_MASK); in USB_DeviceKhciEndpointInit() 281 …uint8_t direction = (epInit->endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK… in USB_DeviceKhciEndpointInit() 1331 uint8_t endpointAddress, in USB_DeviceKhciSend() argument 1336 …uint32_t index = (((uint32_t)endpointAddress & USB_ENDPOINT_NUMBER_MASK… in USB_DeviceKhciSend() 1357 …status = USB_DeviceKhciEndpointTransfer(khciState, endpointAddress & USB_ENDPOINT_NUMBER_MASK, USB… in USB_DeviceKhciSend() 1365 (USB_CONTROL_ENDPOINT == (endpointAddress & USB_ENDPOINT_NUMBER_MASK))) in USB_DeviceKhciSend() 1393 uint8_t endpointAddress, in USB_DeviceKhciRecv() argument 1398 uint32_t index = (((uint32_t)endpointAddress & USB_ENDPOINT_NUMBER_MASK) << 1U) | USB_OUT; in USB_DeviceKhciRecv() 1401 if ((0U == length) && (USB_CONTROL_ENDPOINT == (endpointAddress & USB_ENDPOINT_NUMBER_MASK))) in USB_DeviceKhciRecv() 1437 …status = USB_DeviceKhciEndpointTransfer(khciState, endpointAddress & USB_ENDPOINT_NUMBER_MASK, USB… in USB_DeviceKhciRecv() [all …]
|
| D | usb_device_dci.h | 97 uint8_t endpointAddress, 103 uint8_t endpointAddress, 109 uint8_t endpointAddress);
|
| D | usb_device_lpcip3511.c | 518 uint8_t endpointIndex = USB_LPC3511IP_ENDPOINT_DES_INDEX(epInit->endpointAddress); in USB_DeviceLpc3511IpEndpointInit() 569 if ((epInit->endpointAddress & USB_ENDPOINT_NUMBER_MASK) == USB_CONTROL_ENDPOINT) in USB_DeviceLpc3511IpEndpointInit() 571 if (0U == (epInit->endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK)) in USB_DeviceLpc3511IpEndpointInit() 2084 uint8_t endpointAddress, in USB_DeviceLpc3511IpSend() argument 2089 …_t endpointIndex = USB_LPC3511IP_ENDPOINT_DES_INDEX(endpointAddress); in USB_DeviceLpc3511IpSend() 2110 if ((0U == length) && (USB_CONTROL_ENDPOINT == (endpointAddress & USB_ENDPOINT_NUMBER_MASK))) in USB_DeviceLpc3511IpSend() 2118 uint8_t endpointAddress, in USB_DeviceLpc3511IpRecv() argument 2122 return USB_DeviceLpc3511IpSend(controllerHandle, endpointAddress, buffer, length); in USB_DeviceLpc3511IpRecv() 2394 if ((((endpointStatus->endpointAddress) & USB_ENDPOINT_NUMBER_MASK)) < in USB_DeviceLpc3511IpControl() 2398 … lpc3511IpState, USB_LPC3511IP_ENDPOINT_DES_INDEX(endpointStatus->endpointAddress)); in USB_DeviceLpc3511IpControl() [all …]
|
| D | usb_device_lpcip3511.h | 252 uint8_t endpointAddress, 279 uint8_t endpointAddress,
|
| D | usb_device_ehci.h | 239 uint8_t endpointAddress, 264 uint8_t endpointAddress,
|
| D | usb_device_khci.h | 216 uint8_t endpointAddress, 243 uint8_t endpointAddress,
|
| /hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/output/source/device/class/ |
| D | usb_device_cdc_acm.c | 243 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceCdcAcmEndpointsInit() 247 … if ((USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceCdcAcmEndpointsInit() 251 …cdcAcmHandle->interruptIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUM… in USB_DeviceCdcAcmEndpointsInit() 291 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceCdcAcmEndpointsInit() 295 … if ((USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceCdcAcmEndpointsInit() 299 …cdcAcmHandle->bulkIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMB… in USB_DeviceCdcAcmEndpointsInit() 306 …else if ((USB_OUT == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MA… in USB_DeviceCdcAcmEndpointsInit() 310 …cdcAcmHandle->bulkOut.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUM… in USB_DeviceCdcAcmEndpointsInit() 348 …cmHandle->handle, cdcAcmHandle->commInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceCdcAcmEndpointsDeinit() 353 …cmHandle->handle, cdcAcmHandle->dataInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceCdcAcmEndpointsDeinit() [all …]
|
| D | usb_device_phdc.c | 267 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DevicePhdcEndpointsInit() 273 …phdcHandle->interruptIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBE… in USB_DevicePhdcEndpointsInit() 278 …else if (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK… in USB_DevicePhdcEndpointsInit() 282 …phdcHandle->bulkIn.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MAS… in USB_DevicePhdcEndpointsInit() 290 …phdcHandle->bulkOut.ep = (epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MA… in USB_DevicePhdcEndpointsInit() 324 … phdcHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DevicePhdcEndpointsDeinit() 416 … if (*temp8 == phdcHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DevicePhdcEvent() 424 … else if (USB_IN == ((phdcHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DevicePhdcEvent() 446 … if (*temp8 == phdcHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DevicePhdcEvent() 479 … else if (USB_IN == ((phdcHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DevicePhdcEvent()
|
| D | usb_device_printer.c | 205 epInitStruct.endpointAddress = interface->endpointList.endpoint[index].endpointAddress; in USB_DevicePrinterEndpointsInit() 209 if (((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DevicePrinterEndpointsInit() 257 … printerHandle->interfaceHandle->endpointList.endpoint[index].endpointAddress); in USB_DevicePrinterEndpointsDeinit() 421 … if (temp8 == printerHandle->interfaceHandle->endpointList.endpoint[temp16].endpointAddress) in USB_DevicePrinterEvent() 424 … if (USB_IN == ((printerHandle->interfaceHandle->endpointList.endpoint[temp16].endpointAddress & in USB_DevicePrinterEvent() 449 … if (temp8 == printerHandle->interfaceHandle->endpointList.endpoint[temp16].endpointAddress) in USB_DevicePrinterEvent() 463 … (printerHandle->interfaceHandle->endpointList.endpoint[temp16].endpointAddress & in USB_DevicePrinterEvent() 498 … (printerHandle->interfaceHandle->endpointList.endpoint[temp16].endpointAddress & in USB_DevicePrinterEvent()
|
| D | usb_device_video.c | 316 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceVideoStreamEndpointsInit() 321 … (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceVideoStreamEndpointsInit() 328 … (USB_OUT == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceVideoStreamEndpointsInit() 366 …oHandle->handle, videoHandle->streamInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceVideoStreamEndpointsDeinit() 438 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceVideoControlEndpointsInit() 443 … (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceVideoControlEndpointsInit() 481 …Handle->handle, videoHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceVideoControlEndpointsDeinit() 1241 … if (*temp8 == videoHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceVideoEvent() 1252 … if (*temp8 == videoHandle->streamInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceVideoEvent() 1271 … if (*temp8 == videoHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceVideoEvent() [all …]
|
| D | usb_device_hid.c | 238 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceHidEndpointsInit() 242 … if (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceHidEndpointsInit() 287 … hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceHidEndpointsDeinit() 400 … if (*temp8 == hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceHidEvent() 403 … if (USB_IN == ((hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DeviceHidEvent() 426 … if (*temp8 == hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceHidEvent() 440 … (hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DeviceHidEvent() 475 … (hidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DeviceHidEvent()
|
| D | usb_device_audio.c | 334 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceAudioStreamEndpointsInit() 339 … (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceAudioStreamEndpointsInit() 379 …oHandle->handle, audioHandle->streamInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceAudioStreamEndpointsDeinit() 384 if ((audioHandle->streamInterfaceHandle->endpointList.endpoint[count].endpointAddress & in USB_DeviceAudioStreamEndpointsDeinit() 487 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceAudioControlEndpointsInit() 492 … (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceAudioControlEndpointsInit() 531 …Handle->handle, audioHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceAudioControlEndpointsDeinit() 1852 … if (*temp8 == audioHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceAudioEvent() 1863 … if (*temp8 == audioHandle->streamInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceAudioEvent() 1882 … if (*temp8 == audioHandle->controlInterfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceAudioEvent() [all …]
|
| D | usb_device_ccid.c | 619 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceCcidEndpointsInit() 624 … (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceCcidEndpointsInit() 629 …ccidHandle->endpointBulkIn = epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER… in USB_DeviceCcidEndpointsInit() 632 … (USB_OUT == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceCcidEndpointsInit() 636 …ccidHandle->endpointBulkOut = epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBE… in USB_DeviceCcidEndpointsInit() 642 epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK; in USB_DeviceCcidEndpointsInit() 673 … ccidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceCcidEndpointsDeinit() 858 … if (*temp8 == ccidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceCcidEvent() 874 … if (*temp8 == ccidHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress) in USB_DeviceCcidEvent()
|
| D | usb_device_msc.c | 823 epInitStruct.endpointAddress = interface->endpointList.endpoint[count].endpointAddress; in USB_DeviceMscEndpointsInit() 827 … if (USB_IN == ((epInitStruct.endpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_DIRECTION_MASK) >> in USB_DeviceMscEndpointsInit() 830 mscHandle->bulkInEndpoint = epInitStruct.endpointAddress; in USB_DeviceMscEndpointsInit() 835 mscHandle->bulkOutEndpoint = epInitStruct.endpointAddress; in USB_DeviceMscEndpointsInit() 881 … mscHandle->interfaceHandle->endpointList.endpoint[count].endpointAddress); in USB_DeviceMscEndpointsDeinit()
|
| /hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/host/class/ |
| D | usb_host_msd.c | 290 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)msdInstance->outPipe)->endpointAddress)); in USB_HostMsdMassResetClearInCallback() 312 … (USB_REQUEST_TYPE_DIR_IN | ((usb_host_pipe_t *)msdInstance->inPipe)->endpointAddress)); in USB_HostMsdMassResetCallback() 405 … (USB_REQUEST_TYPE_DIR_IN | ((usb_host_pipe_t *)msdInstance->inPipe)->endpointAddress)) != in USB_HostMsdCswCallback() 505 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)msdInstance->inPipe)->endpointAddress)) != in USB_HostMsdCbwCallback() 590 … (direction | ((usb_host_pipe_t *)msdInstance->inPipe)->endpointAddress)) != in USB_HostMsdDataCallback() 829 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostMsdOpenInterface() 853 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostMsdOpenInterface()
|
| D | usb_host_phdc.c | 274 … (USB_REQUEST_TYPE_DIR_IN | ((usb_host_pipe_t *)phdcInstance->interruptPipe)->endpointAddress)) == in USB_HostPhdcInterruptPipeCallback() 307 … (USB_REQUEST_TYPE_DIR_IN | ((usb_host_pipe_t *)phdcInstance->bulkInPipe)->endpointAddress)) == in USB_HostPhdcBulkInPipeCallback() 414 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)phdcInstance->bulkOutPipe)->endpointAddress)) == in USB_HostPhdcBulkOutPipeCallback() 500 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostPhdcOpenInterface() 526 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostPhdcOpenInterface() 552 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostPhdcOpenInterface()
|
| D | usb_host_cdc.c | 117 … ((usb_host_pipe_t *)cdcInstance->inPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostCdcDataInPipeCallback() 149 … ((usb_host_pipe_t *)cdcInstance->outPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostCdcDataOutPipeCallback() 182 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)cdcInstance->interruptPipe)->endpointAddress)) == in USB_HostCdcInterruptPipeCallback() 279 …pipeInit.endpointAddress = (ep_desc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MAS… in USB_HostCdcOpenDataInterface() 304 …pipeInit.endpointAddress = (ep_desc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MAS… in USB_HostCdcOpenDataInterface() 409 …pipeInit.endpointAddress = (ep_desc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MAS… in USB_HostCdcOpenControlInterface()
|
| D | usb_host_printer.c | 181 … (USB_REQUEST_TYPE_DIR_IN | ((usb_host_pipe_t *)printerInstance->inPipe)->endpointAddress)) == in USB_HostPrinterInPipeCallback() 208 … (USB_REQUEST_TYPE_DIR_OUT | ((usb_host_pipe_t *)printerInstance->outPipe)->endpointAddress)) == in USB_HostPrinterOutPipeCallback() 286 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostPrinterOpenInterface() 312 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostPrinterOpenInterface()
|
| D | usb_host_hid.c | 184 … ((usb_host_pipe_t *)hidInstance->inPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostHidInPipeCallback() 209 … ((usb_host_pipe_t *)hidInstance->outPipe)->endpointAddress)) == kStatus_USB_Success) in USB_HostHidOutPipeCallback() 285 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostHidOpenInterface() 311 …pipeInit.endpointAddress = (epDesc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MASK… in USB_HostHidOpenInterface()
|
| D | usb_host_video.c | 144 …pipe_init.endpointAddress = (ep_desc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MA… in USB_HostVideoControlOpenInterface() 153 videoInstance->interruptInEpNum = pipe_init.endpointAddress; in USB_HostVideoControlOpenInterface() 213 …pipe_init.endpointAddress = (ep_desc->bEndpointAddress & USB_DESCRIPTOR_ENDPOINT_ADDRESS_NUMBER_MA… in USB_HostVideoStreamOpenInterface() 223 videoInstance->isoInEpNum = pipe_init.endpointAddress; in USB_HostVideoStreamOpenInterface()
|
| /hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/host/ |
| D | usb_host_khci.c | 677 if (((pipePointer->endpointAddress | in _USB_HostKhciProcessTrCallback() 1001 … (USB_TOKEN_TOKENENDPT((uint8_t)pipeDescPointer->endpointAddress) | USB_TOKEN_TOKENPID(0xD)); in _USB_HostKhciAtomNonblockingTransaction() 1011 … (USB_TOKEN_TOKENENDPT((uint8_t)pipeDescPointer->endpointAddress) | USB_TOKEN_TOKENPID(0x9)); in _USB_HostKhciAtomNonblockingTransaction() 1021 … (USB_TOKEN_TOKENENDPT((uint8_t)pipeDescPointer->endpointAddress) | USB_TOKEN_TOKENPID(0x1)); in _USB_HostKhciAtomNonblockingTransaction() 1738 pipePointer->endpointAddress = pipeInitPointer->endpointAddress; in USB_HostKhciOpenPipe() 1841 if (pipePointer->endpointAddress == 0U) in USB_HostKhciWritePipe()
|