Skip to content

Commit

Permalink
Merge pull request #1846 from thomaseichinger/at86rf23x
Browse files Browse the repository at this point in the history
drivers/at86rf231: refactoring of the at86rf231 radio driver
  • Loading branch information
OlegHahm committed Oct 31, 2014
2 parents bc37cbe + 9e2cfdc commit fce3a22
Show file tree
Hide file tree
Showing 18 changed files with 1,658 additions and 144 deletions.
7 changes: 5 additions & 2 deletions Makefile.dep
Original file line number Diff line number Diff line change
Expand Up @@ -76,9 +76,8 @@ ifneq (,$(filter cc2420,$(USEMODULE)))
endif

ifneq (,$(filter at86rf231,$(USEMODULE)))
USEMODULE += transceiver
USEMODULE += netdev_802154
USEMODULE += ieee802154
USEMODULE += vtimer
endif

ifneq (,$(filter vtimer,$(USEMODULE)))
Expand All @@ -95,6 +94,10 @@ ifneq (,$(filter ccn_lite,$(USEMODULE)))
USEMODULE += crypto
endif

ifneq (,$(filter netdev_802154,$(USEMODULE)))
USEMODULE += netdev_base
endif

ifneq (,$(filter rgbled,$(USEMODULE)))
USEMODULE += color
endif
Expand Down
4 changes: 3 additions & 1 deletion boards/iot-lab_M3/Makefile.dep
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
ifneq (,$(filter defaulttransceiver,$(USEMODULE)))
USEMODULE += at86rf231
USEMODULE += transceiver
ifeq (,$(filter netdev_base,$(USEMODULE)))
USEMODULE += transceiver
endif
endif
3 changes: 3 additions & 0 deletions drivers/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,8 @@ endif
ifneq (,$(filter lps331ap,$(USEMODULE)))
DIRS += lps331ap
endif
ifneq (,$(filter netdev_802154,$(USEMODULE)))
DIRS += netdev/802154
endif

include $(RIOTBASE)/Makefile.base
Loading

0 comments on commit fce3a22

Please sign in to comment.