Home
last modified time | relevance | path

Searched refs:descriptorParam (Results 1 – 2 of 2) sorted by relevance

/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/host/class/
Dusb_host_cdc_ecm.c128 usb_host_process_descriptor_param_t descriptorParam; in USB_HostCdcEcmGetMacStringDescriptor() local
145 descriptorParam.descriptorBuffer = buffer; in USB_HostCdcEcmGetMacStringDescriptor()
146 descriptorParam.descriptorType = USB_DESCRIPTOR_TYPE_STRING; in USB_HostCdcEcmGetMacStringDescriptor()
147 descriptorParam.descriptorIndex = index; in USB_HostCdcEcmGetMacStringDescriptor()
148 descriptorParam.descriptorLength = bufferLength; in USB_HostCdcEcmGetMacStringDescriptor()
149 descriptorParam.languageId = langID; in USB_HostCdcEcmGetMacStringDescriptor()
151 return USB_HostStandardSetGetDescriptor(deviceInstance, transfer, &descriptorParam); in USB_HostCdcEcmGetMacStringDescriptor()
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/host/
Dusb_host_framework.c132 usb_host_process_descriptor_param_t *descriptorParam; in USB_HostStandardSetGetDescriptor() local
135 descriptorParam = (usb_host_process_descriptor_param_t *)param; in USB_HostStandardSetGetDescriptor()
137 … (uint16_t)((uint16_t)descriptorParam->descriptorType << 8) | descriptorParam->descriptorIndex); in USB_HostStandardSetGetDescriptor()
138 transfer->setupPacket->wIndex = USB_SHORT_TO_LITTLE_ENDIAN(descriptorParam->languageId); in USB_HostStandardSetGetDescriptor()
139 return USB_HostCh9RequestCommon(deviceInstance, transfer, descriptorParam->descriptorBuffer, in USB_HostStandardSetGetDescriptor()
140 descriptorParam->descriptorLength); in USB_HostStandardSetGetDescriptor()