Move drivers/ieee802154 to drivers/wireless/ieee802154; rename include/nuttx/net ieee802154 to 6lowpan.h

This commit is contained in:
Gregory Nutt
2016-02-26 15:03:16 -06:00
parent 6481aa8a3d
commit 309beae2cd
9 changed files with 26 additions and 39 deletions
-11
View File
@@ -373,17 +373,6 @@ if IOEXPANDER
source drivers/ioexpander/Kconfig
endif # IOEXPANDER
menuconfig IEEE802154
bool "IEEE 802.15.4 Device Support"
default n
depends on EXPERIMENTAL
---help---
This directory holds implementations of IEEE802.15.4 device drivers.
if IEEE802154
source drivers/ieee802154/Kconfig
endif
menuconfig LCD
bool "LCD Driver Support"
default n
-1
View File
@@ -54,7 +54,6 @@ include audio$(DELIM)Make.defs
include bch$(DELIM)Make.defs
include i2c$(DELIM)Make.defs
include input$(DELIM)Make.defs
include ieee802154$(DELIM)Make.defs
include ioexpander$(DELIM)Make.defs
include lcd$(DELIM)Make.defs
include leds$(DELIM)Make.defs
+11
View File
@@ -15,6 +15,17 @@ menuconfig WL_CC3000
source drivers/wireless/cc3000/Kconfig
menuconfig IEEE802154
bool "IEEE 802.15.4 Device Support"
default n
depends on EXPERIMENTAL
---help---
This directory holds implementations of IEEE802.15.4 device drivers.
if IEEE802154
source drivers/wireless/ieee802154/Kconfig
endif
config WL_NRF24L01
bool "nRF24l01+ transceiver support"
default n
+6
View File
@@ -35,6 +35,12 @@
ifeq ($(CONFIG_WIRELESS),y)
# Include IEEE 802.15.4 support
ifeq ($(CONFIG_IEEE802154),y)
include wireless$(DELIM)ieee802154$(DELIM)Make.defs
endif
# Include wireless drivers
ifeq ($(CONFIG_WL_CC1101),y)
@@ -43,7 +43,8 @@ ifeq ($(CONFIG_IEEE802154),y)
# Include IEEE 802.15.4 build support
DEPPATH += --dep-path ieee802154
VPATH += :ieee802154
DEPPATH += --dep-path wireless$(DELIM)ieee802154
VPATH += :wireless$(DELIM)ieee802154
CFLAGS += ${shell $(INCDIR) $(INCDIROPT) "$(CC)" $(TOPDIR)$(DELIM)drivers$(DELIM)wireless$(DELIM)ieee802154}
endif # CONFIG_IEEE802154