| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- menu "Example Configuration"
- orsource "$IDF_PATH/examples/common_components/env_caps/$IDF_TARGET/Kconfig.env_caps"
- config SNIFFER_STORE_HISTORY
- bool "Store command history into flash"
- default y
- help
- Linenoise line editing library provides functions to save and load command history.
- If this option is enabled, initalizes a FAT filesystem and uses it to store command history.
- choice SNIFFER_PCAP_DESTINATION
- prompt "Select destination to store pcap file"
- default SNIFFER_PCAP_DESTINATION_SD
- help
- Select where to store the pcap file.
- Currently support storing files to SD card or to host via JTAG interface with 'Trace memory' enabled.
- config SNIFFER_PCAP_DESTINATION_SD
- bool "SD Card"
- help
- Store pcap file to SD card.
- config SNIFFER_PCAP_DESTINATION_JTAG
- bool "JTAG (App Trace)"
- depends on APPTRACE_DEST_TRAX
- help
- Store pcap file to host via JTAG interface.
- config SNIFFER_PCAP_DESTINATION_MEMORY
- bool "Memory"
- help
- Store pcap file to memory.
- endchoice
- if SNIFFER_PCAP_DESTINATION_SD
- choice SNIFFER_SD_MODE
- prompt "Select SD card work mode"
- default SNIFFER_SD_SDMMC_MODE
- help
- Select whitch peripheral SD card should use.
- config SNIFFER_SD_SDMMC_MODE
- bool "SDMMC"
- depends on IDF_TARGET_ESP32 || IDF_TARGET_ESP32S3
- help
- Use SDMMC mode (Not support on esp32c3).
- config SNIFFER_SD_SPI_MODE
- bool "SPI"
- help
- Use SPI mode.
- endchoice
- config SNIFFER_MOUNT_POINT
- string "SD card mount point in the filesystem"
- default "/sdcard"
- help
- Specify the mount point in the VFS (Virtual File System) for SD card.
- config SNIFFER_PCAP_FILE_NAME_MAX_LEN
- int "Max name length of pcap file"
- default 32
- help
- Specify maximum name length of pcap file.
- endif
- if SNIFFER_PCAP_DESTINATION_MEMORY
- config SNIFFER_PCAP_MEMORY_SIZE
- int "Memory size of the '.pcap' file in memory"
- default 4096
- help
- Max memory size to storage packet in memory.
- endif
- config SNIFFER_WORK_QUEUE_LEN
- int "Length of sniffer work queue"
- default 128
- help
- The sniffer callback function should not do heavy work, so we put all heavy IO operation to another task.
- The task gets some basic info of sniffer packet via queue.
- Here you should specify the length of queue.
- config SNIFFER_TASK_STACK_SIZE
- int "Stack size of sniffer task"
- default 4096
- help
- Stack size of sniffer task.
- config SNIFFER_TASK_PRIORITY
- int "Priority of sniffer task"
- default 2
- help
- Priority of sniffer task.
- endmenu
|