nuttx/libs/libc/stream/Kconfig
chao an e51ec54c02 stream/hexdump: add hexdump stream to dump binary to syslog
Signed-off-by: chao an <anchao@xiaomi.com>
2023-05-25 15:22:04 +08:00

33 lines
760 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menu "Stream C I/O"
if LIBC_LZF
config STREAM_LZF_BLOG
int "Log2 of block size"
default 10
range 9 12
---help---
This stream uses two buffers of size a little more than
(1 << CONFIG_STREAM_LZF_BLOG) to compress and decompress data in
chunks. Slightly better compression should be obtainable with larger
NOTE: This is a pairing option for using the decompression tool,
chunks must match with compression
endif
config STREAM_OUT_BUFFER_SIZE
int "Output stream buffer size"
default 64
config STREAM_HEXDUMP_BUFFER_SIZE
int "Output hexdump stream buffer size"
default 128
endmenu # Locale Support