Merge pull request #7 from ROBOTIS-GIT/kinetic-devel

merge for sync kinetic-devel and master branch
This commit is contained in:
Pyo 2018-03-21 13:51:48 +09:00 committed by GitHub
commit e3426070e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
16 changed files with 173 additions and 81 deletions

View File

@ -12,7 +12,7 @@ compiler:
- gcc
notifications:
email:
on_success: always
on_success: change
on_failure: always
recipients:
- pyo@robotis.com

24
README.md Normal file
View File

@ -0,0 +1,24 @@
# ROBOTIS OP3 Messages Metapackage
[![GitHub version](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-OP3-msgs.svg)](https://badge.fury.io/gh/ROBOTIS-GIT%2FROBOTIS-OP3-msgs) [![Build Status](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-OP3-msgs.svg?branch=master)](https://travis-ci.org/ROBOTIS-GIT/ROBOTIS-OP3-msgs)
# Documents for robotis_op3_msgs packages
- [ROBOTIS e-Manual](http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/)
- http://wiki.ros.org/robotis_op3_msgs
- http://wiki.ros.org/op3_action_module_msgs
- http://wiki.ros.org/op3_offset_tuner_msgs
- http://wiki.ros.org/op3_online_walking_module_msgs
- http://wiki.ros.org/op3_walking_module_msgs
# ROS packages related to ROBOTIS OP3
- [robotis_op3](https://github.com/ROBOTIS-GIT/ROBOTIS-OP3)
- [robotis_op3_msgs](https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-msgs)
- [robotis_op3_common](https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Common)
- [robotis_op3_tools](https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Tools)
- [robotis_op3_demo](https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Demo)
- [robotis_framework](https://github.com/ROBOTIS-GIT/ROBOTIS-Framework)
- [robotis_controller_msgs](https://github.com/ROBOTIS-GIT/ROBOTIS-Framework-msgs)
- [robotis_utility](https://github.com/ROBOTIS-GIT/ROBOTIS-Utility)
- [robotis_math](https://github.com/ROBOTIS-GIT/ROBOTIS-Math)
# Documents and Videos for ROBOTIS OP3
- [ROBOTIS e-Manual for ROBOTIS OP3](http://emanual.robotis.com/docs/en/platform/op3/introduction/)

View File

@ -2,7 +2,12 @@
Changelog for package op3_action_module_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2018-03-21)
------------------
* changed package.xml format to v2
* Contributors: Pyo
0.1.0 (2017-10-27)
-----------
------------------
* added msg package for ROBOTIS OP3
* Contributors: Kayman

View File

@ -1,17 +1,21 @@
################################################################################
# CMake
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 2.8.3)
project(op3_action_module_msgs)
################################################################################
# Packages
# Find catkin packages and libraries for catkin and system dependencies
################################################################################
find_package(catkin REQUIRED COMPONENTS
message_generation
std_msgs
message_generation
)
################################################################################
# Setup for python modules and scripts
################################################################################
################################################################################
# Declare ROS messages, services and actions
################################################################################
@ -35,10 +39,10 @@ generate_messages(
################################################################################
################################################################################
# Catkin specific configuration
# Declare catkin specific configuration to be passed to dependent projects
################################################################################
catkin_package(
CATKIN_DEPENDS message_runtime std_msgs
CATKIN_DEPENDS std_msgs message_runtime
)
################################################################################

View File

@ -1,19 +1,20 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>op3_action_module_msgs</name>
<version>0.1.0</version>
<version>0.1.1</version>
<description>
Message and service types: custom messages and services for ROBOTIS OP3 packages
This package includes ROS messages and services for the ROBOTIS OP3 packages
</description>
<license>Apache License 2.0</license>
<license>Apache 2.0</license>
<author email="kmjung@robotis.com">Kayman</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<url type="website">http://wiki.ros.org/op3_action_module_msgs</url>
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="website">http://wiki.ros.org/robotis_op3_msgs</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<depend>std_msgs</depend>
<build_depend>message_generation</build_depend>
<build_depend>std_msgs</build_depend>
<run_depend>message_runtime</run_depend>
<run_depend>std_msgs</run_depend>
<build_export_depend>message_runtime</build_export_depend>
<exec_depend>message_runtime</exec_depend>
</package>

View File

@ -2,7 +2,12 @@
Changelog for package op3_offset_tuner_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2018-03-21)
------------------
* changed package.xml format to v2
* Contributors: Pyo
0.1.0 (2017-10-27)
-----------
------------------
* added msg package for ROBOTIS OP3
* Contributors: Kayman

View File

@ -1,36 +1,40 @@
################################################################################
# CMake
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 2.8.3)
project(op3_offset_tuner_msgs)
################################################################################
# Packages
# Find catkin packages and libraries for catkin and system dependencies
################################################################################
find_package(catkin REQUIRED COMPONENTS
message_generation
std_msgs
message_generation
)
################################################################################
# Setup for python modules and scripts
################################################################################
################################################################################
# Declare ROS messages, services and actions
################################################################################
add_message_files(
FILES
JointOffsetData.msg
JointOffsetPositionData.msg
JointTorqueOnOff.msg
JointTorqueOnOffArray.msg
FILES
JointOffsetData.msg
JointOffsetPositionData.msg
JointTorqueOnOff.msg
JointTorqueOnOffArray.msg
)
add_service_files(
FILES
GetPresentJointOffsetData.srv
FILES
GetPresentJointOffsetData.srv
)
generate_messages(
DEPENDENCIES
std_msgs
DEPENDENCIES
std_msgs
)
################################################################################
@ -38,10 +42,10 @@ generate_messages(
################################################################################
################################################################################
# Catkin specific configuration
# Declare catkin specific configuration to be passed to dependent projects
################################################################################
catkin_package(
CATKIN_DEPENDS message_runtime std_msgs
CATKIN_DEPENDS std_msgs message_runtime
)
################################################################################

View File

@ -1,20 +1,21 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>op3_offset_tuner_msgs</name>
<version>0.1.0</version>
<version>0.1.1</version>
<description>
Message and service types: custom messages and services for ROBOTIS OP3 packages
This package includes ROS messages and services for the ROBOTIS OP3 packages
</description>
<license>Apache License 2.0</license>
<license>Apache 2.0</license>
<author email="kmjung@robotis.com">Kayman</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<url type="website">http://wiki.ros.org/op3_offset_tuner_msgs</url>
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="website">http://wiki.ros.org/robotis_op3_msgs</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<depend>std_msgs</depend>
<build_depend>message_generation</build_depend>
<build_depend>std_msgs</build_depend>
<run_depend>message_runtime</run_depend>
<run_depend>std_msgs</run_depend>
<build_export_depend>message_runtime</build_export_depend>
<exec_depend>message_runtime</exec_depend>
</package>

View File

@ -0,0 +1,14 @@
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Changelog for package op3_online_walking_module_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2018-03-21)
------------------
* added online walking module msgs
* changed package.xml format to v2
* Contributors: SCH, Pyo
0.1.0 (2017-10-27)
------------------
* added msg package for ROBOTIS OP3
* Contributors: Kayman

View File

@ -1,16 +1,23 @@
################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 2.8.3)
project(op3_online_walking_module_msgs)
################################################################################
# Packages
# Find catkin packages and libraries for catkin and system dependencies
################################################################################
find_package(catkin REQUIRED COMPONENTS
sensor_msgs
std_msgs
sensor_msgs
geometry_msgs
message_generation
)
################################################################################
# Setup for python modules and scripts
################################################################################
################################################################################
# Declare ROS messages, services and actions
################################################################################
@ -42,10 +49,14 @@ generate_messages(
)
################################################################################
# Catkin specific configuration
# Declare ROS dynamic reconfigure parameters
################################################################################
################################################################################
# Declare catkin specific configuration to be passed to dependent projects
################################################################################
catkin_package(
CATKIN_DEPENDS std_msgs sensor_msgs geometry_msgs
CATKIN_DEPENDS std_msgs sensor_msgs geometry_msgs message_runtime
)
################################################################################

View File

@ -1,19 +1,23 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>op3_online_walking_module_msgs</name>
<version>0.0.0</version>
<description>The op3_online_walking_module_msgs package</description>
<license>Apache License 2.0</license>
<license>BSD</license>
<version>0.1.1</version>
<description>
This package includes ROS messages and services for the ROBOTIS OP3 packages
</description>
<license>Apache 2.0</license>
<author email="kmjung@robotis.com">Kayman</author>
<author email="sch@robotis.com">SCH</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<url type="website">http://wiki.ros.org/op3_online_walking_module_msgs</url>
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<build_depend>std_msgs</build_depend>
<build_depend>sensor_msgs</build_depend>
<build_depend>geometry_msgs</build_depend>
<depend>std_msgs</depend>
<depend>sensor_msgs</depend>
<depend>geometry_msgs</depend>
<build_depend>message_generation</build_depend>
<run_depend>std_msgs</run_depend>
<run_depend>sensor_msgs</run_depend>
<run_depend>geometry_msgs</run_depend>
<run_depend>message_runtime</run_depend>
<build_export_depend>message_runtime</build_export_depend>
<exec_depend>message_runtime</exec_depend>
</package>

View File

@ -2,7 +2,12 @@
Changelog for package op3_walking_module_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2018-03-21)
------------------
* changed package.xml format to v2
* Contributors: Pyo
0.1.0 (2017-10-27)
-----------
------------------
* added msg package for ROBOTIS OP3
* Contributors: Kayman, Yoshimaru Tanaka

View File

@ -1,17 +1,21 @@
################################################################################
# CMake
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 2.8.3)
project(op3_walking_module_msgs)
################################################################################
# Packages
# Find catkin packages and libraries for catkin and system dependencies
################################################################################
find_package(catkin REQUIRED COMPONENTS
message_generation
std_msgs
message_generation
)
################################################################################
# Setup for python modules and scripts
################################################################################
################################################################################
# Declare ROS messages, services and actions
################################################################################
@ -36,10 +40,10 @@ generate_messages(
################################################################################
################################################################################
# Catkin specific configuration
# Declare catkin specific configuration to be passed to dependent projects
################################################################################
catkin_package(
CATKIN_DEPENDS message_runtime std_msgs
CATKIN_DEPENDS std_msgs message_runtime
)
################################################################################

View File

@ -1,19 +1,20 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>op3_walking_module_msgs</name>
<version>0.1.0</version>
<version>0.1.1</version>
<description>
Message and service types: custom messages and services for ROBOTIS OP3 packages
This package includes ROS messages and services for the ROBOTIS OP3 packages
</description>
<license>Apache License 2.0</license>
<license>Apache 2.0</license>
<author email="kmjung@robotis.com">Kayman</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<url type="website">http://wiki.ros.org/op3_walking_module_msgs</url>
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="website">http://wiki.ros.org/robotis_op3_msgs</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<depend>std_msgs</depend>
<build_depend>message_generation</build_depend>
<build_depend>std_msgs</build_depend>
<run_depend>message_runtime</run_depend>
<run_depend>std_msgs</run_depend>
<build_export_depend>message_runtime</build_export_depend>
<exec_depend>message_runtime</exec_depend>
</package>

View File

@ -2,7 +2,13 @@
Changelog for package robotis_op3_msgs
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.1.1 (2018-03-21)
------------------
* added online walking module msgs
* changed package.xml format to v2
* Contributors: Pyo
0.1.0 (2017-10-27)
-----------
------------------
* added msg package for ROBOTIS OP3
* Contributors: Kayman

View File

@ -1,19 +1,22 @@
<?xml version="1.0"?>
<package>
<package format="2">
<name>robotis_op3_msgs</name>
<version>0.1.0</version>
<version>0.1.1</version>
<description>
ROS msgs packages for the ROBOTIS OP3 (meta package)
ROS messages packages for the ROBOTIS OP3 (meta package)
</description>
<license>Apache License 2.0</license>
<license>Apache 2.0</license>
<author email="kmjung@robotis.com">Kayman</author>
<author email="sch@robotis.com">SCH</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="website">http://wiki.ros.org/robotis_op3_msgs</url>
<url type="emanual">http://emanual.robotis.com/docs/en/platform/op3/robotis_ros_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-OP3-Msgs/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<run_depend>op3_action_module_msgs</run_depend>
<run_depend>op3_offset_tuner_msgs</run_depend>
<run_depend>op3_walking_module_msgs</run_depend>
<exec_depend>op3_action_module_msgs</exec_depend>
<exec_depend>op3_offset_tuner_msgs</exec_depend>
<exec_depend>op3_online_walking_module_msgs</exec_depend>
<exec_depend>op3_walking_module_msgs</exec_depend>
<export><metapackage/></export>
</package>