Browse Source

stm32/usbdev: Pass thru correct val for SCSI PreventAllowMediumRemoval.

This value is "1" when the medium should not be removed, "0" otherwise.
pull/3489/head
Damien George 7 years ago
parent
commit
3f6d3ccc11
  1. 2
      ports/stm32/usbdev/class/src/usbd_msc_scsi.c

2
ports/stm32/usbdev/class/src/usbd_msc_scsi.c

@ -481,7 +481,7 @@ static int8_t SCSI_AllowMediumRemoval(USBD_HandleTypeDef *pdev, uint8_t lun, ui
{
USBD_MSC_BOT_HandleTypeDef *hmsc = &((usbd_cdc_msc_hid_state_t*)pdev->pClassData)->MSC_BOT_ClassData;
hmsc->bot_data_length = 0;
hmsc->bdev_ops->PreventAllowMediumRemoval(lun, params[0]);
hmsc->bdev_ops->PreventAllowMediumRemoval(lun, params[4]);
return 0;
}

Loading…
Cancel
Save