1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/bootloaders/riotboot_dfu/Makefile

20 lines
445 B
Makefile
Raw Normal View History

# Default RIOT bootloader
APPLICATION = riotboot_dfu
# Add RIOTBOOT USB DFU integration
2021-02-18 12:47:51 +01:00
USEMODULE += riotboot_usb_dfu
# Use xtimer for scheduled reboot
USEMODULE += ztimer
USEMODULE += ztimer_init
# USB device vendor and product ID
# pid.codes test VID/PID, not globally unique
# The VID/PID pair allocated for the RIOT bootloader
# as allocated on https://pid.codes/1209/7D02/
USB_VID ?= 1209
USB_PID ?= 7D02
include ../riotboot_common.mk