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:
RetiredWizard 2023-04-25 10:33:13 -04:00 committed by GitHub
parent b3c8575b81
commit 361608119c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -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