noetic build

This commit is contained in:
2022-05-04 12:20:56 -04:00
parent 288e048ade
commit 651204dc5a
9 changed files with 110 additions and 36 deletions

View File

@ -2,6 +2,11 @@
Changelog for package robotis_device
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
0.3.0 (2021-05-03)
------------------
* Update package.xml and CMakeList.txt for noetic branch
* Contributors: Ronaldson Bellande
0.2.9 (2018-03-22)
------------------
* modified to prevent duplicate indirect address write

View File

@ -1,7 +1,7 @@
################################################################################
# Set minimum required version of cmake, project name and compile options
################################################################################
cmake_minimum_required(VERSION 2.8.3)
cmake_minimum_required(VERSION 3.0.2)
project(robotis_device)
################################################################################
@ -30,7 +30,9 @@ find_package(catkin REQUIRED COMPONENTS
catkin_package(
INCLUDE_DIRS include
LIBRARIES robotis_device
CATKIN_DEPENDS roscpp dynamixel_sdk
CATKIN_DEPENDS
roscpp
dynamixel_sdk
)
################################################################################

View File

@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>robotis_device</name>
<version>0.2.9</version>
<version>0.3.0</version>
<description>
The package that manages device information of ROBOTIS robots.
This package is used when reading device information with the robot information file
@ -11,12 +11,21 @@
<author email="zerom@robotis.com">Zerom</author>
<author email="kmjung@robotis.com">Kayman</author>
<author email="sch@robotis.com">SCH</author>
<maintainer email="pyo@robotis.com">Pyo</maintainer>
<maintainer email="ronaldsonbellande@gmail.com">Ronaldson Bellande</maintainer>
<url type="website">http://wiki.ros.org/robotis_device</url>
<url type="emanual">http://emanual.robotis.com/docs/en/software/robotis_framework_packages/</url>
<url type="repository">https://github.com/ROBOTIS-GIT/ROBOTIS-Framework</url>
<url type="bugtracker">https://github.com/ROBOTIS-GIT/ROBOTIS-Framework/issues</url>
<buildtool_depend>catkin</buildtool_depend>
<depend>roscpp</depend>
<depend>dynamixel_sdk</depend>
<build_depend>roscpp</build_depend>
<build_depend>dynamixel_sdk</build_depend>
<build_export_depend>roscpp</build_export_depend>
<build_export_depend>dynamixel_sdk</build_export_depend>
<exec_depend>roscpp</exec_depend>
<exec_depend>dynamixel_sdk</exec_depend>
</package>