1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-01 18:30:56 +00:00

trezorhal/usb: fix string descriptors

This commit is contained in:
Jan Pochyla 2017-08-22 10:49:32 +02:00
parent 112893c46f
commit 115bd995eb

View File

@ -200,12 +200,12 @@ static uint8_t *usb_get_serial_str_descriptor(USBD_SpeedTypeDef speed, uint16_t
}
static uint8_t *usb_get_config_str_descriptor(USBD_SpeedTypeDef speed, uint16_t *length) {
*length = 0;
USBD_GetString(UNCONST(""), usb_str_buf, length);
return usb_str_buf;
}
static uint8_t *usb_get_interface_str_descriptor(USBD_SpeedTypeDef speed, uint16_t *length) {
*length = 0;
USBD_GetString(UNCONST(""), usb_str_buf, length);
return usb_str_buf;
}