Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-usb/output/source/device/class/
Dusb_device_msc_ufi.c436 uint32_t logicalBlockAddress = 0; in USB_DeviceMscUfiReadCommand() local
441 logicalBlockAddress = ((uint32_t)mscHandle->mscCbw->cbwcb[2] << 24); in USB_DeviceMscUfiReadCommand()
442 logicalBlockAddress |= ((uint32_t)mscHandle->mscCbw->cbwcb[3] << 16); in USB_DeviceMscUfiReadCommand()
443 logicalBlockAddress |= ((uint32_t)mscHandle->mscCbw->cbwcb[4] << 8); in USB_DeviceMscUfiReadCommand()
444 logicalBlockAddress |= ((uint32_t)mscHandle->mscCbw->cbwcb[5]); in USB_DeviceMscUfiReadCommand()
469 ufi->thirteenCase.lbaInformation.startingLogicalBlockAddress = logicalBlockAddress; in USB_DeviceMscUfiReadCommand()
489 uint32_t logicalBlockAddress = 0; in USB_DeviceMscUfiWriteCommand() local
494 logicalBlockAddress = ((uint32_t)mscHandle->mscCbw->cbwcb[2] << 24); in USB_DeviceMscUfiWriteCommand()
495 logicalBlockAddress |= ((uint32_t)mscHandle->mscCbw->cbwcb[3] << 16); in USB_DeviceMscUfiWriteCommand()
496 logicalBlockAddress |= ((uint32_t)mscHandle->mscCbw->cbwcb[4] << 8); in USB_DeviceMscUfiWriteCommand()
[all …]