mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
03dc48602e
This should work now: DISABLE_MODULE += netdev_ieee802154_mr_oqpsk DISABLE_MODULE += netdev_ieee802154_mr_ofdm DISABLE_MODULE += netdev_ieee802154_mr_fsk
14 lines
409 B
Makefile
14 lines
409 B
Makefile
SRC := at86rf215.c at86rf215_getset.c at86rf215_netdev.c at86rf215_internal.c
|
|
|
|
ifneq (,$(filter netdev_ieee802154_mr_ofdm,$(USEMODULE)))
|
|
SRC += at86rf215_ofdm.c
|
|
endif
|
|
ifneq (,$(filter netdev_ieee802154_mr_fsk,$(USEMODULE)))
|
|
SRC += at86rf215_fsk.c
|
|
endif
|
|
ifneq (,$(filter netdev_ieee802154_oqpsk netdev_ieee802154_mr_oqpsk,$(USEMODULE)))
|
|
SRC += at86rf215_o-qpsk.c
|
|
endif
|
|
|
|
include $(RIOTBASE)/Makefile.base
|