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
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "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"
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2017-04-20 20:18:09 +02:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config WIRELESS_IWPAN_STACKSIZE
|
|
|
|
int "Stack Size (bytes)"
|
2020-03-27 06:10:33 +01:00
|
|
|
default DEFAULT_TASK_STACKSIZE
|
2017-04-20 20:18:09 +02:00
|
|
|
|
|
|
|
config WIRELESS_IWPAN_PRIORITY
|
|
|
|
int "Command Priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
endif
|