Skip to content

Commit

Permalink
drivers/at86rf231: refactoring of the at86rf231 radio driver
Browse files Browse the repository at this point in the history
* deploy extended operation mode
* cleanup
* implement netdev 802154.h interface
  • Loading branch information
thomaseichinger committed Oct 30, 2014
1 parent 5965220 commit dfb1b56
Show file tree
Hide file tree
Showing 18 changed files with 1,628 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 dfb1b56

Please sign in to comment.