mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
20 lines
461 B
Makefile
20 lines
461 B
Makefile
# Default RIOT bootloader
|
|
APPLICATION = riotboot_tinyusb_dfu
|
|
|
|
# Add RIOTBOOT tinyUSB DFU integration
|
|
USEMODULE += riotboot_tinyusb_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
|