mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 03:49:12 +08:00
refactor(drivers/smart_battery/batmon): convert params.c to module.yaml
Convert 1 parameter file(s) from legacy C format to YAML module configuration.
This commit is contained in:
@@ -38,6 +38,8 @@ px4_add_module(
|
|||||||
SRCS
|
SRCS
|
||||||
batmon.cpp
|
batmon.cpp
|
||||||
|
|
||||||
|
MODULE_CONFIG
|
||||||
|
batmon_params.yaml
|
||||||
DEPENDS
|
DEPENDS
|
||||||
drivers__smbus_sbs
|
drivers__smbus_sbs
|
||||||
drivers__smbus
|
drivers__smbus
|
||||||
|
|||||||
@@ -1,61 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
*
|
|
||||||
* Copyright (c) 2021 PX4 Development Team. All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in
|
|
||||||
* the documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
* 3. Neither the name PX4 nor the names of its contributors may be
|
|
||||||
* used to endorse or promote products derived from this software
|
|
||||||
* without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
||||||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
||||||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
||||||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
||||||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
||||||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
||||||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
||||||
* POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @file batmon_params.c
|
|
||||||
* Smart battery driver parameters for BatMon (rotoye.com/batmon)
|
|
||||||
*
|
|
||||||
* @author Eohan George <eohan@rotoye.com>
|
|
||||||
*/
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Parameter to enable BatMon module
|
|
||||||
*
|
|
||||||
* @reboot_required true
|
|
||||||
* @min 0
|
|
||||||
* @max 2
|
|
||||||
* @group Sensors
|
|
||||||
* @value 0 Disabled
|
|
||||||
* @value 1 Start on default I2C addr(BATMON_ADDR_DFLT)
|
|
||||||
* @value 2 Autodetect I2C address (TODO)
|
|
||||||
*/
|
|
||||||
PARAM_DEFINE_INT32(BATMON_DRIVER_EN, 0);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* I2C address for BatMon battery 1
|
|
||||||
*
|
|
||||||
* @reboot_required true
|
|
||||||
* @decimal 1
|
|
||||||
* @group Sensors
|
|
||||||
*/
|
|
||||||
PARAM_DEFINE_INT32(BATMON_ADDR_DFLT, 11); //0x0B
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
module_name: batmon
|
||||||
|
parameters:
|
||||||
|
- group: Sensors
|
||||||
|
definitions:
|
||||||
|
BATMON_DRIVER_EN:
|
||||||
|
description:
|
||||||
|
short: Parameter to enable BatMon module
|
||||||
|
type: enum
|
||||||
|
values:
|
||||||
|
0: Disabled
|
||||||
|
1: Start on default I2C addr(BATMON_ADDR_DFLT)
|
||||||
|
2: Autodetect I2C address (TODO)
|
||||||
|
default: 0
|
||||||
|
reboot_required: true
|
||||||
|
min: 0
|
||||||
|
max: 2
|
||||||
|
BATMON_ADDR_DFLT:
|
||||||
|
description:
|
||||||
|
short: I2C address for BatMon battery 1
|
||||||
|
type: int32
|
||||||
|
default: 11
|
||||||
|
reboot_required: true
|
||||||
|
decimal: 1
|
||||||
Reference in New Issue
Block a user