nuttx-apps/wireless/ieee802154/i8shark/Kconfig
Anthony Merlino b0bcca49ed Merged in antmerlino/apps/i8shark (pull request #116)
Adds i8shark, a sniffer "adapter" that captures all 802.15.4 traffic, packages it into a Wireshark ZEP packet, and sends it to a host running Wireshark.

Approved-by: Gregory Nutt <gnutt@nuttx.org>
2017-11-01 20:38:22 +00:00

26 lines
621 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config IEEE802154_I8SHARK
bool "IEEE 802.15.4 Wireshark adapter"
default n
select IEEE802154_LIBUTILS
select IEEE802154_LIBMAC
depends on IEEE802154_MACDEV && NET_UDP && NET_IPv4
if IEEE802154_I8SHARK
config IEEE802154_I8SHARK_DEVPATH
string "MAC char driver path"
default "/dev/ieee0"
---help---
The default path to MAC character driver. Default: /dev/ieee0
config IEEE802154_I8SHARK_HOST_IPADDR
hex "Host IP address where Wireshark is running"
default 0x0a000001
endif