mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-26 17:38:39 +00:00
trezorhal: fix typos
This commit is contained in:
parent
ea6763c4ec
commit
61b4e3d6e3
@ -91,7 +91,7 @@ static void usb_init_all(void)
|
|||||||
.device_protocol = 0x01, // Interface Association Descriptor
|
.device_protocol = 0x01, // Interface Association Descriptor
|
||||||
.vendor_id = 0x1209,
|
.vendor_id = 0x1209,
|
||||||
.product_id = 0x53C1,
|
.product_id = 0x53C1,
|
||||||
.release_num = 0x0300,
|
.release_num = 0x0400,
|
||||||
.manufacturer = "SatoshiLabs",
|
.manufacturer = "SatoshiLabs",
|
||||||
.product = "TREZOR",
|
.product = "TREZOR",
|
||||||
.serial_number = "000000000000",
|
.serial_number = "000000000000",
|
||||||
|
@ -64,7 +64,7 @@ void usb_init(const usb_dev_info_t *dev_info) {
|
|||||||
// Device descriptor
|
// Device descriptor
|
||||||
usb_dev_desc.bLength = sizeof(usb_device_descriptor_t);
|
usb_dev_desc.bLength = sizeof(usb_device_descriptor_t);
|
||||||
usb_dev_desc.bDescriptorType = USB_DESC_TYPE_DEVICE;
|
usb_dev_desc.bDescriptorType = USB_DESC_TYPE_DEVICE;
|
||||||
usb_dev_desc.bcdUSB = (sectrue == usb21_enabled) ? 0x0210 : 0x2000; // USB 2.1 or USB 2.0
|
usb_dev_desc.bcdUSB = (sectrue == usb21_enabled) ? 0x0210 : 0x0200; // USB 2.1 or USB 2.0
|
||||||
usb_dev_desc.bDeviceClass = dev_info->device_class;
|
usb_dev_desc.bDeviceClass = dev_info->device_class;
|
||||||
usb_dev_desc.bDeviceSubClass = dev_info->device_subclass;
|
usb_dev_desc.bDeviceSubClass = dev_info->device_subclass;
|
||||||
usb_dev_desc.bDeviceProtocol = dev_info->device_protocol;
|
usb_dev_desc.bDeviceProtocol = dev_info->device_protocol;
|
||||||
|
@ -340,6 +340,9 @@ static void USBD_GetDescriptor(USBD_HandleTypeDef *pdev ,
|
|||||||
#if (USBD_LPM_ENABLED == 1)
|
#if (USBD_LPM_ENABLED == 1)
|
||||||
case USB_DESC_TYPE_BOS:
|
case USB_DESC_TYPE_BOS:
|
||||||
pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len);
|
pbuf = pdev->pDesc->GetBOSDescriptor(pdev->dev_speed, &len);
|
||||||
|
if (!pbuf) {
|
||||||
|
USBD_CtlError(pdev , req);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
#endif
|
#endif
|
||||||
case USB_DESC_TYPE_DEVICE:
|
case USB_DESC_TYPE_DEVICE:
|
||||||
|
Loading…
Reference in New Issue
Block a user