Skip to content

Examples for individual ROS2 functionalities inc. Subscribers, Publishers, Timers, Services, Parameters. ...

Notifications You must be signed in to change notification settings

ctu-mrs/ros2_examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ROS2 examples

This example package is meant to explore the possibilities of ROS2 from the point of view of current ROS1 features and how the ROS1 feature translate into the new ROS2 architecture. We investigate the aspects that are currently utilized in MRS UAV System with the intention of a potential future transition.

Meant to be tested on 20.04 Galactic

Minimalistic Examples

Everything is a component. We happily nodelet everything in ROS1, so why otherwise?

  • ServiceClientExample - periodically calls a service
    • TODO retrieving result synchronously. Some solutions are available, none work for me within a component
    • TODO slow and irregular publishing (Timer-driven) with multi-threaded executor (looks like the same problem can appear even with single-threaded executor)
  • PublisherExample - periodically publishes
    • TODO slow and irregular publishing (Timer-driven) with multi-threaded executor (looks like the same problem can appear even with single-threaded executor)
  • ServiceServerExample - getting called, ok
  • SubscriberExample - subscribes, ok
  • TimerExample - runs multiple timers in parallel
    • timer callbacks are not executed in parallel even with multi-threaded container (with multi-threaded executor, looks like the same problem can appear even with single-threaded executor) --> timers were constructed as part of mutual exclusive callbackGroup
  • ParamsExample - load params from yaml and launch file
    • param server callback is hooked up
    • TODO investigate the ros__parameters: namespace, which does not seem to be necessary (and does not work when present)
  • Tf2BroadcasterExample - publishing transforms, ok
    • TODO no innovation in TF structure, missing the option to have multiple parents
  • Tf2ListenerExample - receiving transforms, lookup table works, ok

Running the examples

./tmux/start.sh (change the sourced workspace path in tmux/session.yml)

First ROS2 impressions

  • colcon, the build system... is it really the best we have got? I want my catkin back.
    • creates workspace wherever colcon build is called
    • therefore, cannot build in subdirectories
    • no colcon clean, no colcon init
    • overall not much user friendly
    • immediately aliased it to fix those hurdles
    • TODO workspace-wide profiles with custom flags
      • profile are not supported by colcon yet. See discussion
      • predefining of build setting with custom flags can be done using mixin
        • install: sudo apt install python3-colcon-mixin
        • REPO with readme and mixin examples: repo
        • example of usage: colcon build --mixin rel-with-deb-info
  • Sourcing ROS2 workspace
    • ROS2 sourcing
  source /opt/ros/foxy/setup.zsh
  source ~/ros2_bridge_workspace/install/setup.zsh
  source ~/ros2_workspace/install/setup.zsh
  • if you build ROS2 workspace while ROS1 is sourced, you will need to source ROS1 every time before launching ROS2 programs, otherwise, this error will appear:
[INFO] [launch]: All log files can be found below /home/klaxalk/.ros/log/2021-02-16-09-29-27-258633-klaxalk-desktop2-1671935
[INFO] [launch]: Default logging verbosity is set to INFO
[INFO] [component_container_mt-1]: process started with pid [1671949]
[component_container_mt-1] [INFO] [1613464167.606666336] [nmspc1_timer_example]: Load Library: /home/klaxalk/ros2_workspace/install/ros2_examples/lib/libtimer_example.so
[component_container_mt-1] /opt/ros/foxy/lib/rclcpp_components/component_container_mt: symbol lookup error: /home/klaxalk/ros2_workspace/install/ros2_examples/lib/libtimer_example.so: undefined symbol: _ZN12class_loader4impl22AbstractMetaObjectBaseC2ERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEES9_S9_
[ERROR] [component_container_mt-1]: process has died [pid 1671949, exit code 127, cmd '/opt/ros/foxy/lib/rclcpp_components/component_container_mt --ros-args -r __node:=nmspc1_timer_example -r __ns:=/'].
[WARNING] [launch]: user interrupted with ctrl-c (SIGINT)
[WARNING] [launch]: user interrupted with ctrl-c (SIGINT) again, ignoring...
  • Topic the subscribers and publisher have to have compatible Quality of Service (QoS) settings -- reliable or best effort. For example RViZ is setting different profile (reliable) that is by default (best effort). QoS
  • mrs_msgs were ported to ROS2
  • ROS bridge (scripts here)
    • Problem: does not compile with const arrays in services issue, as of Dec, 2021
    • Problem: arrays of bools cause compilation issues
    • TODO check performance and load with images
    • TODO check performance and load high publish rates
  • Why are most examples still using main() when everything in ROS2 should be a component (nodelet)?
  • ComponentContainer
    • try running a component as single node by:
  remap = [('cloud_in', '/livox/lidar')]
  node = Node(package='octomap_server2',
               executable='octomap_server',
               output='screen',
               remappings=remap,
               parameters=[params])
  return LaunchDescription([node])

%% * [X] seems like the multi-threaded container (with multi-threaded executor) fails to execute callbacks (at least Timer callbacks) in parallel --> the rclcpp::callback_group::CallbackGroupType::Reentrant has to be selected for parallel execution of callback driven classes (subscribers and timers)

  • multi-threaded composer (with multi-threaded executor) produces very uneven and slow rates of timers, Allow timers to keep up the intended rate in MultiThreadedExecutor #1516 -> merged already and available for version rclcpp 8.0 and higher
  • CMakeLists.txt
    • basics are fine
    • building (and using) custom libraries
    • building standalone executable nodelets
  • Launch files
    • they are in python now link
    • remapping, params, nodelets
    • TODO connecting to existing component containers (nodelet managers)
    • launch prefixes (e.g., launching with GDB) link
  • Subscribers - work fine, just be aware of difference between CallbackGroupType::Reentrant and CallbackGroupType::MutuallyExclusive (default one).
  • Publishers - works fine, not a big difference from ROS1
  • Service client
    • it is asynchronous only!!!!
    • how to make it behave synchronously? wrapper (only in standalone node)
  • Service server - works fine
  • Timers - works fine, just be aware of difference between CallbackGroupType::Reentrant and CallbackGroupType::MutuallyExclusive (default one).
  • Parameters
    • basic params work from yaml and launch
    • Beware! loading an empty yaml file causes a long and cryptic error. Solution: add some unused parameter to the file.
    • Nesting is distinguished by "." in the code (it was "/" in ROS1)
    • TODO test overloading multiple configs over each other
    • TODO test more complex types: lists, matrices, ...
  • DRS - has a direct implementation in the default parameters
    • callback hooked to the external change of the parameters works
    • validation of the parameters has to be performed in our code -> we will need a custom wrapper for that, otherwise madness
    • ROS2 rqt_reconfigure is super buggy and wonky, this issue is especially hellish
      • it shows the node's parameters sometimes, seems random
  • why is the terminal output monochromatic? I want my colors back...
    • export RCUTILS_COLORIZED_OUTPUT=1
  • ROS Time
    • TODO test duration, rate, sleep, wall time vs. sim time (we need sim time for faster/slower than real time simulations)
      • To be able to listen sim time, parameter use_sime_time=1 has to be set individually for every node. PR
      • While using sim time, the get_clock()->now() clock runs at 10 Hz by default. Need to increase the rate as described here.
  • Transformations
    • TODO
    • I really hope that ROS2 will support more than just the TF tree, e.g., an Acyclic graph. We need more parents for a node to allow a robot to being localized within more coordinated systems at a time.
    • What about relativistic transformations? Meaning the frames could have a velocity and, therefore, we could transform a moving object (a ball) from a moving frame (a drone) to a world frame.
  • Tests
    • TODO
  • Pluginlib
    • TODO
  • Actionlib
    • TODO
  • Lifecycles (new feature)
    • TODO

Migration Guide

Messages/Services

  • In order to use the messages generated in the same package we need to use the following CMake code:

    rosidl_target_interfaces(publish_address_book
    ${PROJECT_NAME} "rosidl_typesupport_cpp")

    This finds the relevant generated C++ code from AddressBook.msg and allows your target to link against it.

    You may have noticed that this step was not necessary when the interfaces being used were from a package that was built separately. This CMake code is only required when you want to use interfaces in the same package as the one in which they are used. Source

General Tips

The API documentation of rclcpp and rclpy is hard to find. It is here for Humble rclcpp and here for Rolling rclpy (I didn't find version-specific documentation of rclpy).

%% Note: The API documentation unfortunately sucks. Do not rely on it. A lot of the features are poorly or not at all documented. For example, the %% C++ %% bool get_parameter(const std::string &name, rclcpp::Parameter &parameter) const %% %% function can throw a rclcpp::exceptions::InvalidParameterTypeException if the declared and loaded parameter types mismatch, which is not documented, but can crash your code.

About

Examples for individual ROS2 functionalities inc. Subscribers, Publishers, Timers, Services, Parameters. ...

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published