mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
599 B
Makefile
21 lines
599 B
Makefile
# Configure nrf52dk as default board
|
|
BOARD ?= nrf52dk
|
|
|
|
# load the default test environment
|
|
include ../Makefile.tests_common
|
|
|
|
# RIOT modules used in for this test
|
|
USEMODULE += xtimer
|
|
USEMODULE += bluetil_ad
|
|
|
|
# Get the shared NimBLE and test configuration from the backend server
|
|
include $(RIOTBASE)/tests/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
|