nuttx-apps/testing/batterydump/Kconfig
dulibo1 6534f3d87c add batterydump tool for dump the battery info
Signed-off-by: dulibo1 <dulibo1@xiaomi.com>
2023-08-10 20:44:03 +08:00

30 lines
649 B
Plaintext

#
# 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