Skip to content
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

Zenoh対応(Jazzy待ち) #631

Open
wants to merge 8 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/custom_dict.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
"CHECKVERSION",
"BLAUE",
"Hackentrick",
"3rdparty"
"3rdparty",
"zenoh",
"zenohd"
]
}
9 changes: 9 additions & 0 deletions crane_bringup/launch/crane.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

import os
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument, GroupAction, Shutdown, ExecuteProcess
from launch.substitutions import LaunchConfiguration
Expand All @@ -20,6 +21,8 @@

default_exit_behavior = Shutdown()

os.environ["RMW_IMPLEMENTATION"] = "rmw_zenoh_cpp"


def generate_launch_description():
return LaunchDescription(
Expand Down Expand Up @@ -63,6 +66,12 @@ def generate_launch_description():
"speak", default_value="true", description="音声ノードの起動フラグ"
),
DeclareLaunchArgument("record", default_value="false", description="rosbag記録フラグ"),
Node(
package="rmw_zenoh_cpp",
executable="rmw_zenohd",
output="screen",
on_exit=default_exit_behavior,
),
Node(
condition=UnlessCondition(LaunchConfiguration("simple_ai")),
package="crane_session_controller",
Expand Down
4 changes: 4 additions & 0 deletions dependency_jazzy.repos
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,7 @@ repositories:
type: git
url: https://github.com/HansRobo/speak_ros_voicevox_plugin.git
version: main
rmw_zenoh:
type: git
url: https://github.com/ros2/rmw_zenoh.git
version: rolling
Loading