Skip to content

Commit

Permalink
add batterydump tool for dump the battery info
Browse files Browse the repository at this point in the history
Signed-off-by: dulibo1 <[email protected]>
  • Loading branch information
dulibo1 committed Aug 10, 2023
1 parent 712d008 commit 5b851fc
Show file tree
Hide file tree
Showing 4 changed files with 407 additions and 0 deletions.
29 changes: 29 additions & 0 deletions testing/batterydump/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#
# 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
23 changes: 23 additions & 0 deletions testing/batterydump/Make.defs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
############################################################################
# apps/testing/batterydump/Make.defs
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################

ifneq ($(CONFIG_TESTING_BATTERYDUMP),)
CONFIGURED_APPS += $(APPDIR)/testing/batterydump
endif
30 changes: 30 additions & 0 deletions testing/batterydump/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
############################################################################
# apps/testing/batterydump/Makefile
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership. The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
############################################################################

include $(APPDIR)/Make.defs

PROGNAME = $(CONFIG_TESTING_BATTERYDUMP_PROGNAME)
PRIORITY = $(CONFIG_TESTING_BATTERYDUMP_PRIORITY)
STACKSIZE = $(CONFIG_TESTING_BATTERYDUMP_STACKSIZE)
MODULE = $(CONFIG_TESTING_BATTERYDUMP)

MAINSRC = batterydump.c

include $(APPDIR)/Application.mk
Loading

0 comments on commit 5b851fc

Please sign in to comment.