Use VENDOR_HID when creating USB config when Vendor HID enabled (#495)

* Use VENDOR_HID when creating USB config when Vendor HID enabled

* reduce noise
This commit is contained in:
Liam Murphy
2022-06-10 20:56:29 +10:00
committed by GitHub
parent 4763c3a3f1
commit dc3e34b824

View File

@@ -290,7 +290,7 @@ index 642039120..41d69752c 100644
+ Some(&[ + Some(&[
+ &HID, + &HID,
+ #[cfg(feature = "vendor_hid")] + #[cfg(feature = "vendor_hid")]
+ &HID, + &VENDOR_HID,
+ ]), + ]),
None, // No CDC descriptor array None, // No CDC descriptor array
); );