usb: Begun implementing support into the USB device machinary for BOS descriptors

This commit is contained in:
dragonmux
2022-08-11 07:11:48 +01:00
committed by Piotr Esden-Tempski
parent 1d97cbf6e1
commit 60ff345798
14 changed files with 21 additions and 5 deletions

View File

@@ -47,6 +47,7 @@ LGPL License Terms @ref lgpl_license
struct _usbd_device {
const struct usb_device_descriptor *desc;
const struct usb_config_descriptor *config;
const usb_bos_descriptor *bos;
const char * const *strings;
int num_strings;
@@ -164,4 +165,3 @@ struct _usbd_driver {
};
#endif