nuttx-apps/logging/nxscope/Kconfig
Xiang Xiao 86080a110e apps: Remove the check of CONFIG_SERIAL_TERMIOS
If the code only change c_oflag, c_iflag and c_lflag, not c_cflag in termios.
Follow up the change from kernel: https://github.com/apache/nuttx/pull/8843

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2023-03-19 14:53:44 -06:00

56 lines
1.4 KiB
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config LOGGING_NXSCOPE
bool "NxScope interface"
default n
if LOGGING_NXSCOPE
config LOGGING_NXSCOPE_INTF_SERIAL
bool "NxScope serial port interface support"
default n
---help---
For details, see logging/nxscope/nxscope_iserial.c
config LOGGING_NXSCOPE_INTF_DUMMY
bool "NxScope dummy interface support"
default n
---help---
Useful for debug purposes. For details, see logging/nxscope/nxscope_idummy.c
config LOGGING_NXSCOPE_PROTO_SER
bool "NxScope default serial protocol support"
default y
---help---
For frame details, see logging/nxscope/nxscope_pser.c
config LOGGING_NXSCOPE_DIVIDER
bool "NxScope support for samples divider"
default n
---help---
This option enables interface that allows you to reduce
the rate of samples written to the stream buffer.
config LOGGING_NXSCOPE_ACKFRAMES
bool "NxScope support for ACK frames"
default n
---help---
This option enables ACK frames for set requests
config LOGGING_NXSCOPE_USERTYPES
bool "NxScope support for user types"
default n
---help---
This option enables user-defined frames (see enum nxscope_hdr_id_e)
config LOGGING_NXSCOPE_CRICHANNELS
bool "NxScope support for critical channels"
default n
---help---
Enable the support for non-buffered critical channels
endif # LOGGING_NXSCOPE