-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'ros2-lynx-devel' into ros2-ugv-description
- Loading branch information
Showing
87 changed files
with
739 additions
and
266 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>husarion_ugv</name> | ||
<version>2.1.1</version> | ||
<version>2.1.2</version> | ||
<description>Meta package that contains all packages of Husarion UGV (Unmanned Ground Vehicle)</description> | ||
<maintainer email="[email protected]">Husarion</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
battery: | ||
adc: | ||
device0: | ||
type: string | ||
default_value: "/sys/bus/iio/devices/iio:device0" | ||
description: "Internal ADC0 IIO device." | ||
validation: { not_empty<> } | ||
|
||
device1: | ||
type: string | ||
default_value: "/sys/bus/iio/devices/iio:device1" | ||
description: "Internal ADC1 IIO device." | ||
validation: { not_empty<> } | ||
|
||
ma_window_len: | ||
charge: | ||
type: int | ||
default_value: 10 | ||
description: "Window length of a moving average, used to smooth out battery charge readings." | ||
validation: { gt<>: 0 } | ||
|
||
temp: | ||
type: int | ||
default_value: 10 | ||
description: "Window length of a moving average, used to smooth out battery temperature readings." | ||
validation: { gt<>: 0 } | ||
|
||
ma_window_len: | ||
voltage: | ||
type: int | ||
default_value: 10 | ||
description: "Window length of a moving average, used to smooth out battery voltage readings." | ||
validation: { gt<>: 0 } | ||
|
||
current: | ||
type: int | ||
default_value: 10 | ||
description: "Window length of a moving average, used to smooth out battery current readings." | ||
validation: { gt<>: 0 } | ||
|
||
roboteq: | ||
driver_state_timeout: | ||
type: double | ||
default_value: 0.2 | ||
description: "Timeout in seconds after which driver state messages will be considered old. Used as a fallback when ADC data is not available." | ||
validation: { gt<>: 0.0 } | ||
|
||
battery_timeout: | ||
type: double | ||
default_value: 1.0 | ||
description: "Timeout in seconds. If the node fails to read battery data exceeding this duration, the node will publish an unknown battery state." | ||
validation: { gt<>: 0.0 } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>husarion_ugv_battery</name> | ||
<version>2.1.1</version> | ||
<version>2.1.2</version> | ||
<description>Nodes monitoring the battery state of Husarion Panhter robot</description> | ||
<maintainer email="[email protected]">Husarion</maintainer> | ||
<license>Apache License 2.0</license> | ||
|
@@ -17,6 +17,7 @@ | |
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<depend>diagnostic_updater</depend> | ||
<depend>generate_parameter_library</depend> | ||
<depend>husarion_ugv_utils</depend> | ||
<depend>panther_msgs</depend> | ||
<depend>rclcpp</depend> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.