-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sciurus17、sciurus17_toolsのROS 2対応 #145
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
63cf902
sciurus17パッケージROS 2対応
Kuwamai 63df51c
sciurus17_bringup削除
Kuwamai c704988
sciurus17_msgs削除
Kuwamai 58f875f
sciurus17_tools ROS 2対応
Kuwamai 0a96db1
realsense_hwreset削除
Kuwamai 17b4a73
package.xml修正
Kuwamai b0feb6e
シェルスクリプトのインストール
Kuwamai File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(sciurus17) | ||
find_package(catkin REQUIRED) | ||
catkin_metapackage() | ||
find_package(ament_cmake REQUIRED) | ||
ament_package() |
Empty file.
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,31 +1,34 @@ | ||
<package> | ||
<?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>sciurus17</name> | ||
<version>2.0.0</version> | ||
<description> | ||
ROS package suite of Sciurus17 | ||
</description> | ||
<description>ROS 2 package suite of Sciurus17</description> | ||
<maintainer email="[email protected]">RT Corporation</maintainer> | ||
<author email="[email protected]">Hiroyuki Nomura</author> | ||
<author email="[email protected]">Shota Hirama</author> | ||
|
||
<license>Apache License 2.0</license> | ||
|
||
<author email="[email protected]">Hiroyuki Nomura</author> | ||
<author email="[email protected]">Shota Hirama</author> | ||
<author email="[email protected]">Atsushi Kuwagata</author> | ||
|
||
<url type="website">http://wiki.ros.org/sciurus17_ros</url> | ||
<url type="bugtracker">https://github.com/rt-net/sciurus17_ros/issues</url> | ||
<url type="repository">https://github.com/rt-net/sciurus17_ros</url> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<run_depend>sciurus17_control</run_depend> | ||
<run_depend>sciurus17_description</run_depend> | ||
<run_depend>sciurus17_moveit_config</run_depend> | ||
<run_depend>sciurus17_msgs</run_depend> | ||
<run_depend>sciurus17_vision</run_depend> | ||
<run_depend>sciurus17_bringup</run_depend> | ||
<run_depend>sciurus17_examples</run_depend> | ||
<run_depend>sciurus17_tools</run_depend> | ||
<run_depend>sciurus17_gazebo</run_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<exec_depend>sciurus17_control</exec_depend> | ||
<exec_depend>sciurus17_description</exec_depend> | ||
<exec_depend>sciurus17_examples</exec_depend> | ||
<exec_depend>sciurus17_gazebo</exec_depend> | ||
<exec_depend>sciurus17_moveit_config</exec_depend> | ||
<exec_depend>sciurus17_tools</exec_depend> | ||
|
||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
||
<export> | ||
<metapackage/> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,37 +1,12 @@ | ||
cmake_minimum_required(VERSION 2.8.3) | ||
cmake_minimum_required(VERSION 3.5) | ||
project(sciurus17_tools) | ||
|
||
add_compile_options(-std=c++11) | ||
find_package(ament_cmake REQUIRED) | ||
|
||
find_package(catkin REQUIRED COMPONENTS | ||
roscpp | ||
install(DIRECTORY | ||
scripts | ||
rules | ||
DESTINATION lib/${PROJECT_NAME}/ | ||
) | ||
|
||
find_package(realsense2) | ||
if(NOT realsense2_FOUND) | ||
message(FATAL_ERROR "\n\n Intel RealSense SDK 2.0 is missing, please install it from https://github.com/IntelRealSense/librealsense/releases\n\n") | ||
endif() | ||
|
||
catkin_package( | ||
CATKIN_DEPENDS | ||
roscpp | ||
) | ||
|
||
include_directories( | ||
${catkin_INCLUDE_DIRS} | ||
${realsense_INCLUDE_DIR} | ||
) | ||
|
||
add_executable(realsense_hwreset src/realsense_hwreset.cpp) | ||
target_link_libraries(realsense_hwreset | ||
${realsense2_LIBRARY} | ||
${catkin_LIBRARIES} | ||
${CMAKE_THREAD_LIBS_INIT} | ||
) | ||
|
||
install(TARGETS realsense_hwreset | ||
RUNTIME DESTINATION ${CATKIN_PACKAGE_BIN_DESTINATION} | ||
) | ||
|
||
install(DIRECTORY scripts rules DESTINATION ${CATKIN_PACKAGE_SHARE_DESTINATION}) | ||
|
||
ament_package() |
Empty file.
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,18 +1,23 @@ | ||
<?xml version="1.0"?> | ||
<package> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>sciurus17_tools</name> | ||
<version>2.0.0</version> | ||
<description>The sciurus17_tools package</description> | ||
|
||
<maintainer email="[email protected]">RT Corporation</maintainer> | ||
|
||
<license>Apache License 2.0</license> | ||
|
||
<author email="[email protected]">Hiroyuki Nomura</author> | ||
<author email="[email protected]">Shota Hirama</author> | ||
<license>Apache License 2.0</license> | ||
<author email="[email protected]">Atsushi Kuwagata</author> | ||
|
||
<buildtool_depend>catkin</buildtool_depend> | ||
<build_depend>roscpp</build_depend> | ||
<build_depend>realsense2_camera</build_depend> | ||
<buildtool_depend>ament_cmake</buildtool_depend> | ||
|
||
<run_depend>roscpp</run_depend> | ||
<test_depend>ament_lint_auto</test_depend> | ||
<test_depend>ament_lint_common</test_depend> | ||
|
||
<export> | ||
<build_type>ament_cmake</build_type> | ||
</export> | ||
</package> |
This file was deleted.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lib以下にインストールすると、
ros2 run sciurus17_tools create_udev_rules
でコマンド実行できます。変更お願いします。