2021-11-23 11:33:20 +01:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2023-02-27 11:32:38 +01:00
|
|
|
config STREAM_OUT_BUFFER_SIZE
|
|
|
|
int "Output stream buffer size"
|
|
|
|
default 64
|
|
|
|
|
2021-11-23 11:33:20 +01:00
|
|
|
endmenu # Locale Support
|