2019-06-12 11:27:52 +02:00
|
|
|
# Configure nrf52dk as default board
|
2019-03-21 18:28:26 +01:00
|
|
|
BOARD ?= nrf52dk
|
|
|
|
|
|
|
|
# load the default test environment
|
2023-05-12 10:18:00 +02:00
|
|
|
include ../Makefile.pkg_common
|
2019-03-21 18:28:26 +01:00
|
|
|
|
|
|
|
# RIOT modules used in for this test
|
|
|
|
USEMODULE += xtimer
|
|
|
|
USEMODULE += shell
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmds_default
|
2019-03-21 18:28:26 +01:00
|
|
|
USEMODULE += ps
|
|
|
|
USEMODULE += bluetil_ad
|
|
|
|
|
|
|
|
# Get the shared NimBLE and test configuration from the backend server
|
2023-05-12 10:18:00 +02:00
|
|
|
include $(RIOTBASE)/tests/pkg/nimble_l2cap_server/nimble.inc.mk
|
2019-03-21 18:28:26 +01:00
|
|
|
|
|
|
|
# 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
|