mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
636285ebe4
cpu/$(CPU)/Makefile.features and cpu/$(CPU)/Makefile.dep are automatically included Part of moving CPU/CPU_MODEL definition to Makefile.features to have it available before Makefile.include.
19 lines
629 B
Makefile
19 lines
629 B
Makefile
CPU = kinetis
|
|
# the pba-d-01-kw2x board can embed either a kw21d256, kw21d512 or kw22d512 cpu.
|
|
# The default set up is kw21d256, the variable is overrideable to use the other
|
|
# cpu if needed.
|
|
CPU_MODEL ?= mkw21d256vha5
|
|
|
|
# Put defined MCU peripherals here (in alphabetical order)
|
|
FEATURES_PROVIDED += periph_adc
|
|
FEATURES_PROVIDED += periph_i2c
|
|
FEATURES_PROVIDED += periph_pwm
|
|
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
|