-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from Fingerling42/humble
Reworks and small fixes for 3.1.0 version
- Loading branch information
Showing
31 changed files
with
832 additions
and
275 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
2 changes: 1 addition & 1 deletion
2
robonomics_ros2_interfaces/msg/RobonomicsROS2ReceivedLaunch.msg
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
string launch_sender_address # Address of account that sent launch command | ||
string param_file_name # Name of file with launch parameter | ||
string param # String with param or name of file with parameters |
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>robonomics_ros2_interfaces</name> | ||
<version>3.0.0</version> | ||
<version>3.1.0</version> | ||
<description>Description of all message/services types for Robonomics wrapper for ROS 2</description> | ||
<maintainer email="[email protected]">Ivan Berman</maintainer> | ||
<license>Apache-2.0</license> | ||
|
@@ -20,7 +20,7 @@ | |
<!-- Dependency group of which the package is a member --> | ||
<member_of_group>rosidl_interface_packages</member_of_group> | ||
|
||
|
||
<!-- Dependencies only for test --> | ||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
string datalog_file_name # File name that need to be uploaded to IPFS | ||
string[] encrypt_recipient_addresses [] # Addresses for file encryption, if empty, encryption will not be performed | ||
string datalog_content # Just string or file name that need to be uploaded to IPFS | ||
string[] encrypt_recipient_addresses [] # Addresses for file encryption, if empty, encryption will not be performed | ||
bool is_file True # Is a datalog a file that needs to be uploaded to IPFS? | ||
--- | ||
string datalog_hash # Hash of the datalog transaction | ||
string datalog_hash # Hash of the datalog transaction |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
string param_file_name # Name of file that contains parameter | ||
string param # Just param string or file name with parameters that need to be uploaded to IPFS | ||
string target_address # Address to be triggered with launch | ||
bool is_file True # Is a launch param a file that needs to be uploaded to IPFS (default is True)? | ||
bool encrypt_status True # Check whether the parameter file needs to be encrypted with the target address, default is True | ||
--- | ||
string launch_hash # Hash of the launch transaction |
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,15 +2,17 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>robonomics_ros2_pubsub</name> | ||
<version>3.0.0</version> | ||
<version>3.1.0</version> | ||
<description>Package for using Robonomics functions from ROS 2</description> | ||
<maintainer email="[email protected]">Ivan Berman</maintainer> | ||
<license>Apache-2.0</license> | ||
|
||
<!-- Dependencies that are needed at execution-time (in Python only them are relevant) --> | ||
<exec_depend>rclpy</exec_depend> | ||
<exec_depend>robonomics_ros2_interfaces</exec_depend> | ||
<exec_depend>python3-yaml</exec_depend> | ||
|
||
<depend>robonomics_ros2_interfaces</depend> | ||
|
||
<!-- Dependencies only for test --> | ||
<test_depend>ament_copyright</test_depend> | ||
<test_depend>ament_flake8</test_depend> | ||
<test_depend>ament_pep257</test_depend> | ||
|
Oops, something went wrong.