mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
makefiles: add CAN RX mailbox feature
This commit is contained in:
parent
b424711554
commit
3eeac9895d
@ -651,6 +651,8 @@ groups:
|
||||
features:
|
||||
- name: periph_can
|
||||
help: A CAN peripheral is present.
|
||||
- name: can_rx_mailbox
|
||||
help: CAN controller RX mailbox is supported
|
||||
- name: periph_eth
|
||||
help: An Ethernet peripheral is present.
|
||||
|
||||
|
@ -43,6 +43,7 @@ FEATURES_EXISTING := \
|
||||
ble_phy_2mbit \
|
||||
ble_phy_coded \
|
||||
bootloader_stm32 \
|
||||
can_rx_mailbox \
|
||||
cortexm_fpu \
|
||||
cortexm_mpu \
|
||||
cortexm_svc \
|
||||
|
@ -59,6 +59,9 @@ DEFAULT_MODULE += $(PERIPH_INIT_MODULES)
|
||||
# select cpu_check_address pseudomodule if the corresponding feature is used
|
||||
USEMODULE += $(filter cpu_check_address, $(FEATURES_USED))
|
||||
|
||||
# select can_rx_mailbox pseudomodule if the corresponding feature is used
|
||||
USEMODULE += $(filter can_rx_mailbox, $(FEATURES_USED))
|
||||
|
||||
# select bootloader_stm32 module if the feature is used
|
||||
USEMODULE += $(filter bootloader_stm32, $(FEATURES_USED))
|
||||
|
||||
|
@ -38,6 +38,7 @@ PSEUDOMODULES += arduino_serial_stdio
|
||||
PSEUDOMODULES += can_mbox
|
||||
PSEUDOMODULES += can_pm
|
||||
PSEUDOMODULES += can_raw
|
||||
PSEUDOMODULES += can_rx_mailbox
|
||||
PSEUDOMODULES += ccn-lite-utils
|
||||
PSEUDOMODULES += cc2538_rf_obs_sig
|
||||
PSEUDOMODULES += conn_can_isotp_multi
|
||||
|
Loading…
Reference in New Issue
Block a user