mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
ec312492ee
Introduce and use a common/remote/Makefile.features. The boards were already using the common `Makefile.include` and `Makefile.dep`. This makes 'include $(RIOTCPU)/cc2538/Makefile.features' be done in the same module where 'CPU' is defined. Preparation for moving 'CPU' definition to Makefile.features.
10 lines
325 B
Makefile
10 lines
325 B
Makefile
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_gpio periph_gpio_irq
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_spi
|
|
FEATURES_PROVIDED += periph_timer
|
|
FEATURES_PROVIDED += periph_uart
|
|
|
|
include $(RIOTBOARD)/common/remote/Makefile.features
|