[Documentation] [TitleIndex] [WordIndex

  Show EOL distros: 

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer status: maintained
  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0
  • Source: git https://github.com/ros-teleop/twist_mux.git (branch: hydro-devel)

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer status: maintained
  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0
  • Source: git https://github.com/ros-teleop/twist_mux.git (branch: indigo-devel)

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer status: maintained
  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0
  • Source: git https://github.com/ros-teleop/twist_mux.git (branch: jade-devel)

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer status: maintained
  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0
  • Source: git https://github.com/ros-teleop/twist_mux.git (branch: melodic-devel)

Package Summary

Twist multiplexer, which multiplex several velocity commands (topics) and allows to priorize or disable them (locks).

  • Maintainer status: maintained
  • Maintainer: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>
  • Author: Enrique Fernandez <efernandez AT clearpathrobotics DOT com>, Siegfried-A. Gevatter Pujals <siegfried.gevatter AT pal-robotics DOT com>
  • License: CC BY-NC-SA 4.0
  • Source: git https://github.com/ros-teleop/twist_mux.git (branch: melodic-devel)

Overview

When there are more than a single source to move a robot with a geometry_msgs::Twist message, it is important to multiplex all those input sources into a single one that goes to the controller (e.g. diff_drive_controller).

This package provides a node that subscribes to a list of topics publishing geometry_msgs::Twist messages and multiplexes them using a priority-based scheme. It also supports timeouts for each input and locking by means of topics that publish std_msgs::Bool messages.

Twist multiplexer

The main node of this package is twist_mux, which provides a multiplexer for geometry_msgs::Twist messages. It takes N input twist topics and outputs the messages from a single one. For selecting the topic they are prioritized based on their priority, the messages timeout and M input lock topics that can inhibit one input twist topic. This is illustrated in the diagram below.

twist_mux_diagram

Configuration

The N input twist topics and M input lock topics are configured using parameters, which are read when launching the node:

roslaunch twist_mux twist_mux.launch

In the config folder there are example yaml files with configuration parameters.

Subscribers

The twist_mux subscribes to the N input twist topics and M input lock topics specified in the parameters topics and locks described below.

Twist inputs

The topics parameter contains a list of structs with the following fields that specify each input twist topics:

Example configuration to multiplex the autonomous navigation from move_base, a joystick from joy_teleop, a keyboard from key_teleop and a tablet:

topics:
-
  name    : navigation
  topic   : nav_vel
  timeout : 0.5
  priority: 10
-
  name    : joystick
  topic   : joy_vel
  timeout : 0.5
  priority: 100
-
  name    : keyboard
  topic   : key_vel
  timeout : 0.5
  priority: 90
-
  name    : tablet
  topic   : tab_vel
  timeout : 0.5
  priority: 100

The joystick and the tablet are given the maximum priority, then the keyboard and finally the autonomous navigation. Note that it is possible to use the same priority for several input twist topics, although it is not recommended.

Lock inputs

The locks parameter contains a list of structs with the following fields that specify each input lock topics:

Example configuration to pause the navigation and give priority to the joystick:

locks:
-
  name    : pause
  topic   : pause_navigation
  timeout : 0.0
  # Same priority as joystick control, so it'll not block it.
  priority: 100
-
  name    : joystick 
  topic   : joy_priority
  timeout : 0.0
  priority: 100

Publishers

A single topic is selected every time a new message arrives through the input twist topics; this is needed in order to check for the timeouts, locks, and priorities. The messages are published in:

The selected input is bypassed to the output, so the behavior is completely asynchronous. There is only a small delay introduced for the check that selects the input topic.

Evaluation

The twist multiplexer operates asynchronously using the input twist topics callbacks. Every time a new message arrives, the timeout, priority, and locks are evaluated in order to select the input topic that must be published. Doing this, the output is exactly the same as the input. Only a small delay is introduced. Here we analyze that overhead for different numbers of input twist and lock topics.

The next plot shows one input twist topic vs. the output one. The delay is usually 0, and always < 1ms. twist_mux_plot_01

WIP Plot with: delay vs. N + M

All these tests have been done with a 8-core Intel(R) Core(TM) i7 CPU 870 @ 2.93GHz and 8GB of RAM with the minimum ROS nodes running and Gazebo simulator.

Joystick relay

In order to make it easier to use a joystick input from joy_teleop with twist_mux, the package comes with a joystick relay. See twist_mux/joystick_relay.


2024-03-16 13:06