drivers/wireless/ieee802154/Kconfig

drivers/wireless/ieee802154/Make.defs
    Changes to the build infrastructure to include the mrf24j40 driver

include/nuttx/spi/spi.h
    Define a IEEE SPI device

include/nuttx/wireless/ieee802154/ieee802154_radio.h
    This file defines the API of a IEEE 802.15.4 radio device, to be used by the future common MAC 802.15.4 layer

drivers/wireless/ieee802154/mrf24j40.c
drivers/wireless/ieee802154/mrf24j40.h
    The main MRF24J40 IEEE 802.15.4 radio driver

include/nuttx/wireless/ieee802154/mrf24j40.h
    This file allows instanciation of the MRF24j40 driver from board configurations
This commit is contained in:
Sebastien Lorquet
2016-02-26 18:39:27 -06:00
committed by Gregory Nutt
parent d84fa1689a
commit dc7adfa817
9 changed files with 1960 additions and 7 deletions
+4 -3
View File
@@ -3,6 +3,8 @@
# see the file kconfig-language.txt in the NuttX tools repository.
#
if DRIVERS_WIRELESS
config WL_CC1101
bool "CC1101 RF transceiver support"
default n
@@ -15,16 +17,14 @@ menuconfig WL_CC3000
source drivers/wireless/cc3000/Kconfig
menuconfig IEEE802154
menuconfig DRIVERS_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"
@@ -103,3 +103,4 @@ config WL_PN532_DEBUG_RX
depends on WL_PN532_DEBUG
endif # WL_PN532
endif # DRIVERS_WIRELESS