22754053e8
drivers/wireless: Adds XBee S2C (802.15.4 firmware) support. XBee driver emulates mac802154 interface * drivers/wireless/xbee: Adds xbee_netdev. Very similar to mac802154_netdev * configs/same70-xplained: Starts adding support for XBee radio * drivers/wireless/ieee802154/xbee: More structuring of XBee driver * drivers/wireless/ieee802154/xbee: More Xbee work. Starts adding support on Clicker2 * drivers/wireless/ieee802154/xbee: More XBee MAC code * configs/clicker2-stm32: More work to add XBee radio support * drivers/wireless/ieee802154/xbee: Most of driver is now structured. No build errors * configs/clicker2-stm32: Adjustments to XBee click module support * drivers/xbee: Changes md_ prefix to xd_ prefix for xbeenet_driver_s fields * drivers/xbee: XBee network device now passes MAC events via IOCTL * drivers/xbee: Support querying device for parameters, setting parameters, and structures association/startpan logic * configs/clicker2-stm32: Fixes Xbee lower half ATTN poll logic * drivers/xbee: Removes dependce on CONFIG_IEEE802154_NETDEV * drivers/xbee: Supports MAC RESET.request primitive * drivers/xbee: Exposes generic AT query to the rest of driver * drivers/xbee: Sets local values when writing setting change to Xbee device * drivers/xbee: Finish association logic * drivers/xbee: Adds xbee_get_mhrlen( ) allocating enough space for API frame header to frame * drivers/xbee: Finishes transmit/receive logic * drivers/xbee: Fixes xbee_netdev to match logic in mac802154_netdev.c * drivers/xbee: Rearranges logic to prevent a loop condition where recursion could potentially occur to the point of deadlocking the system Approved-by: Gregory Nutt <gnutt@nuttx.org>
69 lines
1.6 KiB
Plaintext
69 lines
1.6 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_BOARD_CLICKER2_STM32
|
|
|
|
config CLICKER2_STM32_MB1_SPI
|
|
bool "mikroBUS1 SPI"
|
|
default n
|
|
select STM32_SPI3
|
|
---help---
|
|
Enable SPI support on mikroBUS1 (STM32 SPI3)
|
|
|
|
config CLICKER2_STM32_MB2_SPI
|
|
bool "mikroBUS2 SPI"
|
|
default n
|
|
select STM32_SPI2
|
|
---help---
|
|
Enable SPI support on mikroBUS1 (STM32 SPI2)
|
|
|
|
config CLICKER2_STM32_MB1_BEE
|
|
bool "mikroBUS1 MRF24J40 BEE"
|
|
default y
|
|
depends on IEEE802154_MRF24J40
|
|
select CLICKER2_STM32_MB1_SPI
|
|
---help---
|
|
Enable support for MRF24J40 BEE on mikroBUS1
|
|
|
|
config CLICKER2_STM32_MB2_BEE
|
|
bool "mikroBUS2 MRF24J40 BEE"
|
|
default n
|
|
depends on IEEE802154_MRF24J40
|
|
select CLICKER2_STM32_MB2_SPI
|
|
---help---
|
|
Enable support for MRF24J40 BEE on mikroBUS2
|
|
|
|
config CLICKER2_STM32_MRF24J40LH_VERBOSE
|
|
bool "Verbose MRF24J40 lowerhalf"
|
|
default n
|
|
depends on IEEE802154_MRF24J40 && DEBUG_WIRELESS_INFO
|
|
---help---
|
|
Enable verbose syslog for MRF24J40 lowerhalf
|
|
|
|
config CLICKER2_STM32_MB1_XBEE
|
|
bool "mikroBUS1 XBee radio"
|
|
default n
|
|
depends on IEEE802154_XBEE
|
|
select CLICKER2_STM32_MB1_SPI
|
|
---help---
|
|
Enable support for XBee radio on mikroBUS1
|
|
|
|
config CLICKER2_STM32_MB2_XBEE
|
|
bool "mikroBUS2 XBee radio"
|
|
default n
|
|
depends on IEEE802154_XBEE
|
|
select CLICKER2_STM32_MB2_SPI
|
|
---help---
|
|
Enable support for XBee on mikroBUS2
|
|
|
|
config CLICKER2_STM32_XBEELH_VERBOSE
|
|
bool "Verbose XBee lowerhalf"
|
|
default n
|
|
depends on IEEE802154_XBEE && DEBUG_WIRELESS_INFO
|
|
---help---
|
|
Enable verbose syslog for XBee lowerhalf
|
|
|
|
endif # ARCH_BOARD_CLICKER2_STM32
|