2017-04-20 20:18:09 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig WIRELESS_IWPAN
|
2017-04-21 17:36:19 +02:00
|
|
|
bool "IEEE 802.15.4 Command Line Tool"
|
2017-04-20 20:18:09 +02:00
|
|
|
default n
|
2017-04-21 17:36:19 +02:00
|
|
|
depends on NET && DRIVERS_WIRELESS
|
2017-04-21 18:58:48 +02:00
|
|
|
select IEEE802154_LIBMAC
|
2017-04-21 17:36:19 +02:00
|
|
|
select IEEE802154_LIBUTILS
|
2017-04-20 20:18:09 +02:00
|
|
|
---help---
|
|
|
|
IWPAN is a tool similar to wapi and inspired by iwpan on Linux that can
|
|
|
|
be used to manage 802.15.4 PAN.
|
|
|
|
|
|
|
|
if WIRELESS_IWPAN
|
|
|
|
|
|
|
|
config WIRELESS_IWPAN_PROGNAME
|
|
|
|
string "Program Name"
|
|
|
|
default "iwpan"
|
2018-08-23 19:06:15 +02:00
|
|
|
depends on BUILD_LOADABLE
|
2017-04-20 20:18:09 +02:00
|
|
|
---help---
|
|
|
|
This is the name of the program that will be use when the NSH ELF
|
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config WIRELESS_IWPAN_STACKSIZE
|
|
|
|
int "Stack Size (bytes)"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
config WIRELESS_IWPAN_PRIORITY
|
|
|
|
int "Command Priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
endif
|