mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-16 20:32:47 +01:00
29 lines
981 B
Makefile
29 lines
981 B
Makefile
|
BOARD ?= samr21-xpro
|
||
|
include ../Makefile.tests_common
|
||
|
|
||
|
USEMODULE += auto_init_gnrc_netif
|
||
|
USEMODULE += auto_init_usbus
|
||
|
USEMODULE += gnrc_ipv6_router_default
|
||
|
USEMODULE += gnrc_icmpv6_echo
|
||
|
USEMODULE += usbus_cdc_ecm
|
||
|
USEMODULE += shell
|
||
|
USEMODULE += shell_commands
|
||
|
USEMODULE += ps
|
||
|
|
||
|
# Increase the number of network interfaces in case the board under test also provides a network interface
|
||
|
CFLAGS += -DGNRC_NETIF_NUMOF=2
|
||
|
|
||
|
# USB device vendor and product ID
|
||
|
# pid.codes test VID/PID, not globally unique
|
||
|
USB_VID ?= 1209
|
||
|
USB_PID ?= 0001
|
||
|
|
||
|
CFLAGS += -DUSB_CONFIG_VID=0x$(USB_VID) -DUSB_CONFIG_PID=0x$(USB_PID)
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.include
|
||
|
|
||
|
ifeq ($(USB_VID):$(USB_PID), 1209:0001)
|
||
|
$(shell $(COLOR_ECHO) "$(COLOR_RED)Private testing pid.codes USB VID/PID used!, do not use it outside of test environments!$(COLOR_RESET)" 1>&2)
|
||
|
$(shell $(COLOR_ECHO) "$(COLOR_RED)MUST NOT be used on any device redistributed, sold or manufactured, VID/PID is not unique!$(COLOR_RESET)" 1>&2)
|
||
|
endif
|