2021-12-02 10:19:03 +01:00
|
|
|
BOARD ?= nrf52840dk
|
2023-05-12 10:18:00 +02:00
|
|
|
include ../Makefile.pkg_common
|
2021-12-02 10:19:03 +01:00
|
|
|
|
|
|
|
# we want shell support
|
|
|
|
USEMODULE += shell
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmds_default
|
2021-12-02 10:19:03 +01:00
|
|
|
# setup NimBLE specific modules
|
|
|
|
USEMODULE += nimble_scanner
|
|
|
|
USEMODULE += nimble_scanlist
|
|
|
|
USEMODULE += nimble_adv_ext
|
2021-12-06 13:09:01 +01:00
|
|
|
FEATURES_OPTIONAL += ble_phy_2mbit
|
|
|
|
FEATURES_OPTIONAL += ble_phy_coded
|
2021-12-02 10:19:03 +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:
|
|
|
|
DEVELHELP ?= 1
|
|
|
|
|
|
|
|
# Change this to 0 show compiler invocation lines by default:
|
|
|
|
QUIET ?= 1
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|