mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
3671b009d8
Signed-off-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
31 lines
748 B
Makefile
31 lines
748 B
Makefile
|
|
BOARD ?= same54-xpro
|
|
include ../Makefile.tests_common
|
|
|
|
# This has to be the absolute path to the RIOT base directory:
|
|
RIOTBASE ?= $(CURDIR)/../..
|
|
|
|
# Comment this out to disable code in RIOT that does safety checking
|
|
# which is not needed in a production environment but helps in the
|
|
# development process:
|
|
DEVELHELP ?= 1
|
|
|
|
USEMODULE += auto_init_usbus
|
|
|
|
USEMODULE += mtd
|
|
USEMODULE += mtd_write_page
|
|
USEMODULE += ps
|
|
USEMODULE += shell
|
|
USEMODULE += usbus_msc
|
|
USEMODULE += ztimer_msec
|
|
# Purposely disable auto_attach for this application
|
|
CFLAGS += -DCONFIG_USBUS_AUTO_ATTACH=0
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
QUIET ?= 1
|
|
|
|
USB_VID ?= $(USB_VID_TESTING)
|
|
USB_PID ?= $(USB_PID_TESTING)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|