mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3cf33f7b5c
Currently only tested boards provide the feature riotboot. Potentially all boards embeding a cortex-m0+/3/4/7 are able to have riotboot as a feature, but other dependencies need to be met, e.g. usage of cortexm.ld linker script, double initialisation of cpu_init(), etc. See doc in bootloaders/riotboot.
17 lines
516 B
Makefile
17 lines
516 B
Makefile
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_rtc
|
|
FEATURES_PROVIDED += periph_rtt
|
|
FEATURES_PROVIDED += periph_spi
|
|
FEATURES_PROVIDED += periph_timer
|
|
FEATURES_PROVIDED += periph_uart
|
|
|
|
# Put other features for this board (in alphabetical order)
|
|
FEATURES_PROVIDED += riotboot
|
|
|
|
# The board MPU family (used for grouping by the CI system)
|
|
FEATURES_MCU_GROUP = cortex_m0_2
|
|
|
|
include $(RIOTCPU)/saml21/Makefile.features
|