mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
24 lines
668 B
Makefile
24 lines
668 B
Makefile
# Configure nrf52dk as default board
|
|
BOARD ?= nrf52dk
|
|
|
|
# load the default test environment
|
|
include ../Makefile.pkg_common
|
|
|
|
# RIOT modules used in for this test
|
|
USEMODULE += xtimer
|
|
USEMODULE += shell
|
|
USEMODULE += shell_cmds_default
|
|
USEMODULE += ps
|
|
USEMODULE += bluetil_ad
|
|
|
|
# Get the shared NimBLE and test configuration from the backend server
|
|
include $(RIOTBASE)/tests/pkg/nimble_l2cap_server/nimble.inc.mk
|
|
|
|
# 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:
|
|
CFLAGS += -DLOG_LEVEL=LOG_ALL
|
|
CFLAGS += -DDEBUG_ASSERT_VERBOSE
|
|
|
|
include $(RIOTBASE)/Makefile.include
|