1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

Merge pull request #3614 from OlegHahm/rename_at86_autoinit

at86rf2xx: rename remaining files and variables
This commit is contained in:
Martine Lenders 2015-08-12 02:07:06 +02:00
commit d67acba044
7 changed files with 10 additions and 10 deletions

View File

@ -10,7 +10,7 @@ ifneq (,$(filter ng_nomac,$(USEMODULE)))
USEMODULE += ng_netbase
endif
ifneq (,$(filter ng_at86rf2%,$(USEMODULE)))
ifneq (,$(filter at86rf2%,$(USEMODULE)))
USEMODULE += at86rf2xx
USEMODULE += ieee802154
endif

View File

@ -12,5 +12,5 @@ PSEUDOMODULES += log
PSEUDOMODULES += log_printfnoformat
# include variants of the AT86RF2xx drivers as pseudo modules
PSEUDOMODULES += ng_at86rf23%
PSEUDOMODULES += ng_at86rf21%
PSEUDOMODULES += at86rf23%
PSEUDOMODULES += at86rf21%

View File

@ -1,4 +1,4 @@
ifneq (,$(filter ng_netif_default,$(USEMODULE)))
USEMODULE += ng_at86rf231
USEMODULE += at86rf231
USEMODULE += ng_nomac
endif

View File

@ -1,5 +1,5 @@
ifneq (,$(filter ng_netif_default,$(USEMODULE)))
USEMODULE += ng_at86rf212b
USEMODULE += at86rf212b
USEMODULE += ng_nomac
endif

View File

@ -1,4 +1,4 @@
ifneq (,$(filter ng_netif_default,$(USEMODULE)))
USEMODULE += ng_at86rf233
USEMODULE += at86rf233
USEMODULE += ng_nomac
endif

View File

@ -8,19 +8,19 @@ BOARD_BLACKLIST := nucleo-f334
# nucleo-f334: not enough GPIO pins defined
ifneq (,$(filter samr21-xpro,$(BOARD)))
DRIVER ?= ng_at86rf233
DRIVER ?= at86rf233
USE_BOARD_PARAMETERS:=true
endif
ifneq (,$(filter iot-lab_M3,$(BOARD)))
DRIVER ?= ng_at86rf231
DRIVER ?= at86rf231
USE_BOARD_PARAMETERS:=true
endif
ifneq (,$(DRIVER))
USEMODULE += $(DRIVER)
else
# default to ng_at86rf231
USEMODULE += ng_at86rf231
# default to at86rf231
USEMODULE += at86rf231
endif
ifneq (true,$(USE_BOARD_PARAMETERS))