2012-04-06 15:49:35 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 15:49:35 +00:00
|
|
|
#
|
2016-07-08 06:32:58 -06:00
|
|
|
|
2020-02-08 15:30:09 +08:00
|
|
|
if PIPES
|
|
|
|
|
2016-07-19 13:34:18 -06:00
|
|
|
config DEV_PIPE_MAXSIZE
|
|
|
|
int "Maximum pipe/FIFO size"
|
2016-08-06 08:07:30 -06:00
|
|
|
default 1024 if !DEFAULT_SMALL
|
|
|
|
default 256 if DEFAULT_SMALL
|
2016-07-19 13:34:18 -06:00
|
|
|
---help---
|
|
|
|
Maximum configurable size of a pipe or FIFO at runtime.
|
|
|
|
|
2016-07-08 06:32:58 -06:00
|
|
|
config DEV_PIPE_SIZE
|
2016-07-19 13:34:18 -06:00
|
|
|
int "Default pipe size"
|
2016-08-06 08:07:30 -06:00
|
|
|
default 1024 if !DEFAULT_SMALL
|
|
|
|
default 256 if DEFAULT_SMALL
|
2016-07-19 13:34:18 -06:00
|
|
|
---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"
|
2016-08-06 08:07:30 -06:00
|
|
|
default 1024 if !DEFAULT_SMALL
|
|
|
|
default 256 if DEFAULT_SMALL
|
2016-07-08 06:32:58 -06:00
|
|
|
---help---
|
2016-07-19 13:34:18 -06:00
|
|
|
Sets the default size of the FIFO ringbuffer in bytes. A value of
|
|
|
|
zero disables FIFO support.
|
2020-02-08 15:30:09 +08:00
|
|
|
|
|
|
|
endif # PIPES
|