machine/usb: set the vid and pid to valid values supplied by Adafruit and Arduino for boards that support USB CDC

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2020-01-28 23:31:35 +01:00
committed by Ayke
parent fbb8efd24c
commit 0312f12696
11 changed files with 111 additions and 6 deletions
+11
View File
@@ -123,3 +123,14 @@ const (
var (
I2S0 = I2S{Bus: sam.I2S}
)
// USB CDC identifiers
const (
usb_STRING_PRODUCT = "ItsyBitsy M0 Express"
usb_STRING_MANUFACTURER = "Adafruit"
)
var (
usb_VID uint16 = 0x239A
usb_PID uint16 = 0x800F
)