mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
26 lines
652 B
Makefile
26 lines
652 B
Makefile
|
BOARD ?= nrf52840dk
|
||
|
include ../Makefile.tests_common
|
||
|
|
||
|
# we want shell support
|
||
|
USEMODULE += shell
|
||
|
USEMODULE += shell_commands
|
||
|
# setup NimBLE specific modules
|
||
|
USEMODULE += nimble_scanner
|
||
|
USEMODULE += nimble_scanlist
|
||
|
USEMODULE += nimble_adv_ext
|
||
|
USEMODULE += nimble_phy_2mbit
|
||
|
|
||
|
ifneq (,$(filter nrf52840dk nrf52840dongle,$(BOARD)))
|
||
|
USEMODULE += nimble_phy_coded
|
||
|
endif
|
||
|
|
||
|
# 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
|