#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
#
config TESTING_BATTERYDUMP
	tristate "Battery dump for test"
	default n
	---help---
		Enable the battery dump

if TESTING_BATTERYDUMP

config TESTING_BATTERYDUMP_PROGNAME
	string "Program name"
	default "batterydump"
	---help---
		This is the name of the program that will be used when the NSH ELF
		program is installed.

config TESTING_BATTERYDUMP_PRIORITY
	int "Battery dump task priority"
	default 100

config TESTING_BATTERYDUMP_STACKSIZE
	int "Battery dump stack size"
	default DEFAULT_TASK_STACKSIZE

endif
