From 9c8cbe9aea9a38af3071b8e90c70ff147c74688c Mon Sep 17 00:00:00 2001 From: chrysn Date: Tue, 16 Feb 2021 08:58:18 +0100 Subject: [PATCH] riotboot_dfu: Use allocated USB IDs The IDs are not advertised to dfu-util to allow a smooth transition into having a VID/PID-identifiable riotboot_dfu. As allocated on https://pid.codes/1209/7D02/. --- bootloaders/riotboot_dfu/Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bootloaders/riotboot_dfu/Makefile b/bootloaders/riotboot_dfu/Makefile index 5c5b1b08f5..794be9b977 100644 --- a/bootloaders/riotboot_dfu/Makefile +++ b/bootloaders/riotboot_dfu/Makefile @@ -35,8 +35,10 @@ RIOTBASE ?= $(CURDIR)/../../ # USB device vendor and product ID # pid.codes test VID/PID, not globally unique -USB_VID ?= ${USB_VID_TESTING} -USB_PID ?= ${USB_PID_TESTING} +# The VID/PID pair allocated for the RIOT bootloader +# as allocated on https://pid.codes/1209/7D02/ +USB_VID ?= 1209 +USB_PID ?= 7D02 include $(RIOTBASE)/Makefile.include