machine/nrf52840: add correct USB VID and PID for all nrf52840 based boards

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2020-03-16 20:07:40 +01:00
committed by Ayke
parent c03e3616a2
commit 9f597bbbc3
8 changed files with 88 additions and 0 deletions
+11
View File
@@ -59,3 +59,14 @@ func PowerSupplyActive(active bool) {
POWER_SUPPLY_PIN.Low()
}
}
// USB CDC identifiers
const (
usb_STRING_PRODUCT = "PHYTEC reelboard"
usb_STRING_MANUFACTURER = "PHYTEC"
)
var (
usb_VID uint16 = 0x2FE3
usb_PID uint16 = 0x100
)