File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 3
3
# see the file kconfig-language.txt in the NuttX tools repository.
4
4
#
5
5
#
6
- config TESTING_BATTERYDUMP
7
- tristate "Battery dump for test "
6
+ config SYSTEM_BATTERYDUMP
7
+ tristate "Battery dump system tool "
8
8
default n
9
9
---help---
10
10
Enable the battery dump
11
11
12
- if TESTING_BATTERYDUMP
12
+ if SYSTEM_BATTERYDUMP
13
13
14
- config TESTING_BATTERYDUMP_PROGNAME
14
+ config SYSTEM_BATTERYDUMP_PROGNAME
15
15
string "Program name"
16
16
default "batterydump"
17
17
---help---
18
18
This is the name of the program that will be used when the NSH ELF
19
19
program is installed.
20
20
21
- config TESTING_BATTERYDUMP_PRIORITY
21
+ config SYSTEM_BATTERYDUMP_PRIORITY
22
22
int "Battery dump task priority"
23
23
default 100
24
24
25
- config TESTING_BATTERYDUMP_STACKSIZE
25
+ config SYSTEM_BATTERYDUMP_STACKSIZE
26
26
int "Battery dump stack size"
27
27
default DEFAULT_TASK_STACKSIZE
28
28
Original file line number Diff line number Diff line change 1
1
############################################################################
2
- # apps/testing /batterydump/Make.defs
2
+ # apps/system /batterydump/Make.defs
3
3
#
4
4
# Licensed to the Apache Software Foundation (ASF) under one or more
5
5
# contributor license agreements. See the NOTICE file distributed with
18
18
#
19
19
############################################################################
20
20
21
- ifneq ($(CONFIG_TESTING_BATTERYDUMP ),)
22
- CONFIGURED_APPS += $(APPDIR)/testing /batterydump
21
+ ifneq ($(CONFIG_SYSTEM_BATTERYDUMP ),)
22
+ CONFIGURED_APPS += $(APPDIR)/system /batterydump
23
23
endif
Original file line number Diff line number Diff line change 1
1
# ###########################################################################
2
- # apps/testing /batterydump/Makefile
2
+ # apps/system /batterydump/Makefile
3
3
#
4
4
# Licensed to the Apache Software Foundation (ASF) under one or more
5
5
# contributor license agreements. See the NOTICE file distributed with
20
20
21
21
include $(APPDIR ) /Make.defs
22
22
23
- PROGNAME = $(CONFIG_TESTING_BATTERYDUMP_PROGNAME )
24
- PRIORITY = $(CONFIG_TESTING_BATTERYDUMP_PRIORITY )
25
- STACKSIZE = $(CONFIG_TESTING_BATTERYDUMP_STACKSIZE )
26
- MODULE = $(CONFIG_TESTING_BATTERYDUMP )
23
+ PROGNAME = $(CONFIG_SYSTEM_BATTERYDUMP_PROGNAME )
24
+ PRIORITY = $(CONFIG_SYSTEM_BATTERYDUMP_PRIORITY )
25
+ STACKSIZE = $(CONFIG_SYSTEM_BATTERYDUMP_STACKSIZE )
26
+ MODULE = $(CONFIG_SYSTEM_BATTERYDUMP )
27
27
28
28
MAINSRC = batterydump.c
29
29
Original file line number Diff line number Diff line change 1
1
/****************************************************************************
2
- * apps/testing /batterydump/batterydump.c
2
+ * apps/system /batterydump/batterydump.c
3
3
*
4
4
* Licensed to the Apache Software Foundation (ASF) under one or more
5
5
* contributor license agreements. See the NOTICE file distributed with
You can’t perform that action at this time.
0 commit comments