mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-04-07 10:55:56 +00:00
trezorhal: fix simple interface behaviour on windows
This commit is contained in:
parent
399d6d2f65
commit
1b712a0446
@ -289,7 +289,6 @@ USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup)
|
||||
break;
|
||||
|
||||
case USB_REQ_TYPE_CLASS:
|
||||
case USB_REQ_TYPE_VENDOR:
|
||||
if (pdev->dev_state == USBD_STATE_CONFIGURED) {
|
||||
if (pdev->pClass->Setup != NULL)
|
||||
pdev->pClass->Setup(pdev, &pdev->request);
|
||||
@ -297,6 +296,15 @@ USBD_StatusTypeDef USBD_LL_SetupStage(USBD_HandleTypeDef *pdev, uint8_t *psetup)
|
||||
USBD_CtlError(pdev, &pdev->request);
|
||||
}
|
||||
break;
|
||||
|
||||
case USB_REQ_TYPE_VENDOR:
|
||||
if (pdev->dev_state == USBD_STATE_CONFIGURED || pdev->dev_state == USBD_STATE_ADDRESSED) {
|
||||
if (pdev->pClass->Setup != NULL)
|
||||
pdev->pClass->Setup(pdev, &pdev->request);
|
||||
} else {
|
||||
USBD_CtlError(pdev, &pdev->request);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
return USBD_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user