mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-27 15:31:17 +01:00
The Adafruit Clue and Itsybitsy nRF52 also use the Adafruit nRF52 Bootloader which has a common module that can be used. Especially the Itsybitsy nRF52 (mis)uses the nrfutil programmer target and has a lot of redundant code. Furthermore, the Double Tap Magic Value used by both boards is incorrect for using the USB Bootloader.
16 lines
343 B
Makefile
16 lines
343 B
Makefile
ifneq (,$(filter saul_default,$(USEMODULE)))
|
|
USEMODULE += saul_gpio
|
|
USEMODULE += apds9960
|
|
USEMODULE += bmp280_i2c
|
|
USEMODULE += lis3mdl
|
|
USEMODULE += sht3x
|
|
endif
|
|
|
|
ifneq (,$(filter disp_dev,$(USEMODULE)))
|
|
USEMODULE += ili9341
|
|
endif
|
|
|
|
USEMODULE += boards_common_adafruit-nrf52-bootloader
|
|
|
|
include $(RIOTBOARD)/common/nrf52/Makefile.dep
|