1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

usbopt: add USBOPT_ENUMERATED_SPEED

This commit is contained in:
Koen Zandberg 2023-03-31 14:26:58 +02:00
parent e112749946
commit 86e2953470
No known key found for this signature in database
GPG Key ID: BA1718B37D79F51C

View File

@ -70,6 +70,15 @@ typedef enum {
*/
USBOPT_MAX_SPEED,
/**
* @brief (usb_version_t) Speed at which the usb peripheral got enumerated by the host
*
* Should be equal or slower than @ref USBOPT_MAX_SPEED
*
* Setting this option must return -ENOTSUP
*/
USBOPT_ENUMERATED_SPEED,
/* expand list if required */
} usbopt_t;