nuttx-apps/system/ymodem/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

37 lines
679 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_YMODEM
tristate "YMODEM"
---help---
Enable support for ymodem.
if SYSTEM_YMODEM
config SYSTEM_YMODEM_STACKSIZE
int "ymodem stack size"
default 4096
---help---
The size of stack allocated for the ymodem task.
config SYSTEM_YMODEM_PRIORITY
int "ymodem priority"
default 255
---help---
The priority of the ymodem task.
config SYSTEM_YMODEM_DEBUG
bool "ymodem debug"
default false
if SYSTEM_YMODEM_DEBUG
config SYSTEM_YMODEM_DEBUGFILE_PATH
string "save ymodem debug log path"
default "/tmp/ymodem"
endif
endif