-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modifying repository folder structure (#6)
- Loading branch information
1 parent
b6aec5c
commit f284b75
Showing
22 changed files
with
72 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
Changelog for package massrobotics_amr_sender | ||
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
0.0.2 (2021-06-24) | ||
------------------- | ||
* Changed package name to ``massrobotics_amr_sender`` | ||
* Changed repository folder organization | ||
|
||
0.0.1 (2021-06-23) | ||
------------------- | ||
* Added support for Identity and Status reports | ||
* Added support for several ROS2 messages | ||
|
||
* ``geometry_msgs/TwistStamped`` | ||
* ``sensor_msgs/BatteryState`` | ||
* ``geometry_msgs/PoseStamped`` | ||
* ``nav_msgs/Path`` | ||
* ``std_msgs/String`` | ||
* ``std_msgs/Float32`` | ||
* ``std_msgs/Float64`` | ||
|
||
* Added unit tests for all message callbacks | ||
* Added ``3-Clause BSD License`` |
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
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,9 +1,9 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>ros2-to-mass-amr-interop</name> | ||
<version>0.0.1</version> | ||
<description>MassRobotics AMR Interop Standard implementation</description> | ||
<name>massrobotics_amr_sender</name> | ||
<version>0.0.2</version> | ||
<description>MassRobotics AMR Interop Sender</description> | ||
<maintainer email="[email protected]">leandro</maintainer> | ||
<license>3-Clause BSD License</license> | ||
|
||
|
File renamed without changes.
8 changes: 4 additions & 4 deletions
8
sample_config.yaml → ...robotics_amr_sender_py/sample_config.yaml
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,4 @@ | ||
[develop] | ||
script-dir=$base/lib/massrobotics_amr_sender | ||
[install] | ||
install-scripts=$base/lib/massrobotics_amr_sender |
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,13 +1,13 @@ | ||
from setuptools import setup, find_packages | ||
|
||
package_name = 'ros2_to_mass_amr_interop' | ||
package_name = 'massrobotics_amr_sender' | ||
|
||
setup( | ||
name=package_name, | ||
packages=find_packages(), | ||
package_data={'': ['schema.json']}, | ||
include_package_data=True, | ||
version='0.1.0', | ||
version='0.0.2', | ||
data_files=[ | ||
('share/ament_index/resource_index/packages', | ||
['resource/' + package_name]), | ||
|
@@ -17,12 +17,12 @@ | |
zip_safe=True, | ||
maintainer='InOrbit', | ||
maintainer_email='[email protected]', | ||
description='ROS2 node implementing MassRobotics AMR Interoperability Standard', | ||
license='TODO: License declaration', | ||
description='ROS2 node implementing a MassRobotics AMR Interoperability Sender', | ||
license='3-Clause BSD License', | ||
tests_require=['pytest'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'ros2_to_mass_node = ros2_to_mass_amr_interop.ros2_to_mass_node:main' | ||
'massrobotics_amr_node = massrobotics_amr_sender.massrobotics_amr_node:main' | ||
], | ||
}, | ||
) |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.