Skip to content

Commit 4b827b2

Browse files
authored
Merge pull request #2966 from sommersoft/ci_check_vid_pid
Automate USB VID/PID Uniqueness Check
2 parents 9cf9441 + 95e27bb commit 4b827b2

File tree

18 files changed

+164
-16
lines changed

18 files changed

+164
-16
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ jobs:
9191
- name: New boards check
9292
run: python3 -u ci_new_boards_check.py
9393
working-directory: tools
94+
- name: Duplicate USB VID/PID Check
95+
run: python3 -u -m tools.ci_check_duplicate_usb_vid_pid
9496
- name: Build mpy-cross.static-raspbian
9597
run: make -C mpy-cross -j2 -f Makefile.static-raspbian
9698
- uses: actions/upload-artifact@v2

ports/atmel-samd/boards/feather_m0_adalogger/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x8015
2+
USB_PID = 0x80D3
33
USB_PRODUCT = "Feather M0 Adalogger"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55

ports/atmel-samd/boards/feather_m0_express_crickit/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x8023
2+
USB_PID = 0x80D1
33
USB_PRODUCT = "Feather M0 Express"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55

ports/atmel-samd/boards/feather_m0_rfm69/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x8015
2+
USB_PID = 0x80D2
33
USB_PRODUCT = "Feather M0 RFM69"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55

ports/atmel-samd/boards/feather_m0_rfm9x/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x8015
2+
USB_PID = 0x80D4
33
USB_PRODUCT = "Feather M0 RFM9x"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55

ports/atmel-samd/boards/feather_radiofruit_zigbee/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x8023
2+
USB_PID = 0x80D0
33
USB_PRODUCT = "Feather RadioFruit Zigbee"
44
USB_MANUFACTURER = "Adafruit Industries LLC"
55

ports/atmel-samd/boards/pewpew10/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x801D
2+
USB_PID = 0x80D5
33
USB_PRODUCT = "PewPew 10.2"
44
USB_MANUFACTURER = "Radomir Dopieralski"
55

ports/atmel-samd/boards/ugame10/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x801F
2+
USB_PID = 0x80AF
33
USB_PRODUCT = "uGame10"
44
USB_MANUFACTURER = "Radomir Dopieralski"
55

ports/nrf/boards/TG-Watch02A/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x802A
2+
USB_PID = 0x80DB
33
USB_PRODUCT = "TG-Watch02A"
44
USB_MANUFACTURER = "TG-Tech"
55

ports/nrf/boards/electronut_labs_blip/mpconfigboard.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
USB_VID = 0x239A
2-
USB_PID = 0x803C
2+
USB_PID = 0x80D7
33
USB_PRODUCT = "Blip"
44
USB_MANUFACTURER = "Electronut Labs"
55

0 commit comments

Comments
 (0)