nuttx-apps/system/inifile/Kconfig

29 lines
618 B
Plaintext
Raw Normal View History

2014-01-16 00:52:06 +01:00
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
2014-01-16 00:52:06 +01:00
#
2015-04-07 21:23:39 +02:00
menuconfig SYSTEM_INIFILE
bool "INI File Parser"
2014-01-16 00:52:06 +01:00
default n
---help---
Enable support for a simple INI file parser.
if SYSTEM_INIFILE
config SYSTEM_INIFILE_MAXLINE
int "Max line length"
default 256
---help---
The largest line that the parser can expect to see in an INI file.
config SYSTEM_INIFILE_DEBUGLEVEL
int "Debug level"
default 0
range 0 2
---help---
0=Debug off; 1=Print errors on console; 2=Print debug information
on the console.
endif # SYSTEM_INIFILE