nuttx/drivers/pipes/Kconfig
Xiang Xiao 3cb259daa6 drivers/Kconfig: Move if/endif to subfolder Kconfig
Move if/endif to subfolder Kconfig and make ARCH_HAVE_XXX option always selectable by moving out of if/endif
2020-02-08 08:04:05 -06:00

32 lines
785 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
if PIPES
config DEV_PIPE_MAXSIZE
int "Maximum pipe/FIFO size"
default 1024 if !DEFAULT_SMALL
default 256 if DEFAULT_SMALL
---help---
Maximum configurable size of a pipe or FIFO at runtime.
config DEV_PIPE_SIZE
int "Default pipe size"
default 1024 if !DEFAULT_SMALL
default 256 if DEFAULT_SMALL
---help---
Sets the default size of the pipe ringbuffer in bytes. A value of
zero disables pipe support.
config DEV_FIFO_SIZE
int "Default FIFO size"
default 1024 if !DEFAULT_SMALL
default 256 if DEFAULT_SMALL
---help---
Sets the default size of the FIFO ringbuffer in bytes. A value of
zero disables FIFO support.
endif # PIPES