2019-02-01 14:29:51 +01:00
|
|
|
# name of your application
|
|
|
|
APPLICATION = usbus_minimal
|
|
|
|
|
|
|
|
# If no BOARD is found in the environment, use this default:
|
|
|
|
BOARD ?= samr21-xpro
|
|
|
|
|
|
|
|
# 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 += usbus
|
2019-02-11 13:46:02 +01:00
|
|
|
USEMODULE += auto_init_usbus
|
2019-02-01 14:29:51 +01:00
|
|
|
|
|
|
|
# USB device vendor and product ID
|
2020-04-03 12:10:07 +02:00
|
|
|
USB_VID ?= $(USB_VID_TESTING)
|
|
|
|
USB_PID ?= $(USB_PID_TESTING)
|
2019-02-01 14:29:51 +01:00
|
|
|
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
|
|
QUIET ?= 1
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|