Change VID/PID to be Raspberry Pi values
Spotted the Cosmo_pico port on circuitpython.org which is the same class of device as the Pimoroni PICO dv so I'm switching the VID/PID to use the Raspberry Pi owned values rather than the Adafruit values just as the Como device uses.
This commit is contained in:
parent
b3c8575b81
commit
361608119c
|
@ -1,6 +1,6 @@
|
|||
USB_VID = 0x239A
|
||||
USB_PID = 0x80F4
|
||||
USB_PRODUCT = "Pico"
|
||||
USB_VID = 0x2E8A
|
||||
USB_PID = 0x104C
|
||||
USB_PRODUCT = "Pimoroni PICO dv"
|
||||
USB_MANUFACTURER = "Raspberry Pi"
|
||||
|
||||
CHIP_VARIANT = RP2040
|
||||
|
|
Loading…
Reference in New Issue