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

Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) #3143

Merged
merged 9 commits into from
Nov 1, 2022

Conversation

danzimmerman
Copy link
Contributor

@danzimmerman danzimmerman commented Oct 27, 2022

Relates to the discussion in ros2/rclcpp#1929 about changing the throttled macros.

In the interim, since RCLCPP_INFO_THROTTLE and related macros are pretty basic functionality that newer C++/ROS2 users might want, it's worth adding an explicit note about how to convert a rclcpp::Duration to a usable type for the message interval in those macros.

Copy link
Collaborator

@fujitatomoya fujitatomoya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@danzimmerman thanks for contributing.

Will we support the Duration? If so, why we add the document for that when we do support it?

I think complication for now is that there is no clear description that these throttle macro only accepts millisecond? so probably adding that note would be helpful for user?

How about adding the note to API section?

https://github.com/ros2/ros2_documentation/blob/rolling/source/Concepts/About-Logging.rst#apis

@danzimmerman
Copy link
Contributor Author

danzimmerman commented Oct 28, 2022

I think complication for now is that there is no clear description that these throttle macro only accepts millisecond? so probably adding that note would be helpful for user?

Yes, I think that a note about milliseconds as an integer argument will be necessary even after a PR against rclcpp/#1929 is merged. Makes sense to add that where you suggest.

I also see that an IDE will help more once I upgrade rclcpp and get the Humble backport of rcutils/pull/359. Then I know it is an integer in milliseconds from an IDE hint👍

I think that I still want to find a hint for a new user that you can get a rclcpp::Duration::nanoseconds() to get integer nanoseconds if you need or want to do some math to get the argument. Maybe a link to the API docs is sufficient? (It took me forever to find them, see below)

I have several reasons after encountering the above that I think some kind of simple hint is worthwhile until the simple beginner code below compiles and works correctly. Imagine a fast external caller is giving me a rclcpp::Duration called period, like in a plugin framework:

RCLCPP_INFO_THROTTLE(this->get_node()->get_logger(),
    clk,
    period/50, 
    "update() returns OK at 1/50th the loop rate"
);

Here's what happens.

  • The compiler error suggests you need a rcutils_duration_value_t but of course can't tell you that you should use milliseconds. Why can't I just call rclcpp::Duration::nanoseconds(), which returns rcutils_duration_value_t? I feel like hints are nice if you're leaking abstractions.
  • I want to understand what a rclcpp::Duration is, but the API documentation for recent releases is obscure and barely discoverable.
  • It feels helpful and convenient to point out that .nanoseconds() is a getter for the entire duration in integer nanoseconds. ROS2 message stamps and ROS1 Time both use .seconds and .nanoseconds differently, which can cause headaches for a new developer. The terse documentation in my IDE suggests these methods return the entire duration, but it's difficult to double check to be sure, especially in C++ with a non-source install. Again, @aprotyas is helping out nicely on ROS Answers (the third google search result for something), but shouldn't the documentation help out too?

Maybe, per the last point, I just want the Doxygen comment on .nanoseconds() to say "Returns the entire duration in nanoseconds." or something?

Or I should make a PR on API documentation discoverability?

Or write a page on rclcpp/rclpy Time API to go in the main docs?

Possibly all of the above?

I understand that this is kind of a messy conflation of documentation discoverability issues and actual documentation issues.

Thanks for the suggestion and I think over time I will try to

  • Change this PR as @fujitatomoya suggests, which remains helpful after the macros support Duration
  • Think about how to change the comment on the .seconds() and .nanoseconds() methods to emphasize that they return the entire duration, not a whole and fractional part
  • Try to draft a page on the Time API for the main docs. (Is it okay to discuss the differences from ROS1 there?)
  • Think if I can contribute to Links to rclcpp and rclpy API in rolling distro documentation refer to foxy related API #2309, but it seems like that's a pretty far-reaching backend issue since the various API links aren't good for templating across distribution name.
  • See if there's a place to manually add the distros' generated API docs links to docs.ros.org

Unfortunately my C chops aren't good enough to efficiently work on
rclcpp/#1929, because that certainly solves many of the issues for RCLCPP_*_THROTTLE

@fujitatomoya
Copy link
Collaborator

@danzimmerman thanks for the information.

I have several reasons after encountering the above that I think some kind of simple hint is worthwhile until the simple beginner code below compiles and works correctly.

I see, that example makes sense and user application perspective, that something user would do.

as @clalancette mentioned here, ros2/rclcpp#1929 (comment), probably we can add new macro for that case to keep backward compatibility.

Comment on lines 111 to 113
Due to limitations in the way ``rclcpp`` C++ logging macros
currently use the underlying ``rcutils`` C macros, the data type of the interval parameter
needs to be implicitly convertible to ``rcutils_duration_value_t``.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think we should phrase it like this. It is enough to say:

The data type of the interval parameter needs to be implicitly convertible to an ``rcutils_duration_value_t`` (an int64_t).

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If this is for beginners/new users as @danzimmerman writes, implicitly convertible might not be something the reader would understand.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Took a stab at text that captures both of these. I retained a code example of how to use rclcpp::Duration::nanoseconds() to use an existing variable, but happy to remove that if it's not appropriate.

Copy link
Contributor

@clalancette clalancette left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

One more change since it was mixing printf and stream styles.

Otherwise this seems reasonable to me.

Co-authored-by: Chris Lalancette <clalancette@gmail.com>
@danzimmerman
Copy link
Contributor Author

@clalancette @fujitatomoya There's still the question of whether or not this PR should include a similar brief note about integer milliseconds at https://github.com/ros2/ros2_documentation/blob/rolling/source/Concepts/About-Logging.rst

Happy to add that too.

@danzimmerman danzimmerman marked this pull request as ready for review October 31, 2022 23:07
@clalancette
Copy link
Contributor

@clalancette @fujitatomoya There's still the question of whether or not this PR should include a similar brief note about integer milliseconds at https://github.com/ros2/ros2_documentation/blob/rolling/source/Concepts/About-Logging.rst

I think it does make sense to update this block:

.. tabs::
.. group-tab:: C++
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}`` - output the given printf-style message every time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_ONCE`` - output the given printf-style message only the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_EXPRESSION`` - output the given printf-style message only if the given expression is true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_FUNCTION`` - output the given printf-style message only if the given function returns true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_SKIPFIRST`` - output the given printf-style message all but the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_THROTTLE`` - output the given printf-style message no more than the given rate
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_SKIPFIRST_THROTTLE`` - output the given printf-style message no more than the given rate, but skip the first
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM`` - output the given C++ stream-style message every time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_ONCE`` - output the given C++ stream-style message only the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_EXPRESSION`` - output the given C++ stream-style message only if the given expression is true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_FUNCTION`` - output the given C++ stream-style message only if the given function returns true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_SKIPFIRST`` - output the given C++ stream-style message all but the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_THROTTLE`` - output the given C++ stream-style message no more than the given rate
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_SKIPFIRST_THROTTLE`` - output the given C++ stream-style message no more than the given rate, but skip the first
Each of the above APIs takes an ``rclcpp::Logger`` object as the first argument.
This can be pulled from the node API by calling ``node->get_logger()`` (recommended), or by constructing a stand-alone ``rclcpp::Logger`` object.
* ``rcutils_logging_set_logger_level`` - Set the logging level for a particular logger name to the given severity level
* ``rcutils_logging_get_logger_effective_level`` - Given a logger name, return the logger level (which may be unset)
.. group-tab:: Python
* ``logger.{debug,info,warning,error,fatal}`` - output the given Python string to the logging infrastructure. The calls accept the following keyword args to control behavior:
* ``throttle_duration_sec`` - if not None, the duration of the throttle interval
* ``skip_first`` - if True, output the message all but the first time this line is hit
* ``once`` - if True, only output the message the first time this line is hit
* ``rclpy.logging.set_logger_level`` - Set the logging level for a particular logger name to the given severity level
* ``rclpy.logging.get_logger_effective_level`` - Given a logger name, return the logger level (which may be unset)
. That is, instead of just saying "rate", say "rate in milliseconds". Also, for the Python version, it should be "rate in seconds as a double".

@fujitatomoya
Copy link
Collaborator

@clalancette @fujitatomoya There's still the question of whether or not this PR should include a similar brief note about integer milliseconds at https://github.com/ros2/ros2_documentation/blob/rolling/source/Concepts/About-Logging.rst

I think it does make sense to update this block:

.. tabs::
.. group-tab:: C++
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}`` - output the given printf-style message every time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_ONCE`` - output the given printf-style message only the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_EXPRESSION`` - output the given printf-style message only if the given expression is true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_FUNCTION`` - output the given printf-style message only if the given function returns true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_SKIPFIRST`` - output the given printf-style message all but the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_THROTTLE`` - output the given printf-style message no more than the given rate
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_SKIPFIRST_THROTTLE`` - output the given printf-style message no more than the given rate, but skip the first
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM`` - output the given C++ stream-style message every time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_ONCE`` - output the given C++ stream-style message only the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_EXPRESSION`` - output the given C++ stream-style message only if the given expression is true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_FUNCTION`` - output the given C++ stream-style message only if the given function returns true
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_SKIPFIRST`` - output the given C++ stream-style message all but the first time this line is hit
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_THROTTLE`` - output the given C++ stream-style message no more than the given rate
* ``RCLCPP_{DEBUG,INFO,WARN,ERROR,FATAL}_STREAM_SKIPFIRST_THROTTLE`` - output the given C++ stream-style message no more than the given rate, but skip the first
Each of the above APIs takes an ``rclcpp::Logger`` object as the first argument.
This can be pulled from the node API by calling ``node->get_logger()`` (recommended), or by constructing a stand-alone ``rclcpp::Logger`` object.
* ``rcutils_logging_set_logger_level`` - Set the logging level for a particular logger name to the given severity level
* ``rcutils_logging_get_logger_effective_level`` - Given a logger name, return the logger level (which may be unset)
.. group-tab:: Python
* ``logger.{debug,info,warning,error,fatal}`` - output the given Python string to the logging infrastructure. The calls accept the following keyword args to control behavior:
* ``throttle_duration_sec`` - if not None, the duration of the throttle interval
* ``skip_first`` - if True, output the message all but the first time this line is hit
* ``once`` - if True, only output the message the first time this line is hit
* ``rclpy.logging.set_logger_level`` - Set the logging level for a particular logger name to the given severity level
* ``rclpy.logging.get_logger_effective_level`` - Given a logger name, return the logger level (which may be unset)

. That is, instead of just saying "rate", say "rate in milliseconds". Also, for the Python version, it should be "rate in seconds as a double".

@danzimmerman I am with @clalancette on this. thanks for the effort 👍

@danzimmerman danzimmerman changed the title Add draft note on rclcpp/issues/1929 Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) Nov 1, 2022
Copy link
Contributor

@clalancette clalancette left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me, thanks for the updates.

@fujitatomoya what do you think?

Copy link
Collaborator

@fujitatomoya fujitatomoya left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@danzimmerman thank you for iterating, i am good to go!

@clalancette clalancette added the backport-all backport at reviewers discretion; from rolling to all versions label Nov 1, 2022
@clalancette clalancette merged commit dcd066f into ros2:rolling Nov 1, 2022
mergify bot pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)
mergify bot pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)
mergify bot pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)
@danzimmerman danzimmerman deleted the dz/throttle-duration branch November 1, 2022 20:33
clalancette pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143) (#3150)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)

Co-authored-by: Dan Zimmerman <dan@danzimmerman.com>
clalancette pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143) (#3151)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)

Co-authored-by: Dan Zimmerman <dan@danzimmerman.com>
clalancette pushed a commit that referenced this pull request Nov 1, 2022
…pp/issues/1929) (#3143) (#3152)

* Note milliseconds on API Concepts page

* Add units and types to About Logging page

Co-authored-by: dan <dan@polarworks.no>
Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
(cherry picked from commit dcd066f)

Co-authored-by: Dan Zimmerman <dan@danzimmerman.com>
ygoumaz added a commit to cyberbotics/ros2_documentation that referenced this pull request Nov 2, 2022
commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (ros2#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (ros2#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (ros2#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (ros2#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (ros2#3135)

    Fallout from ros2#2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (ros2#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (ros2#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (ros2#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (ros2#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (ros2#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (ros2#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (ros2#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (ros2#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (ros2#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (ros2#3086) (ros2#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>
ygoumaz added a commit to cyberbotics/ros2_documentation that referenced this pull request Nov 2, 2022
commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (ros2#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (ros2#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (ros2#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (ros2#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (ros2#3135)

    Fallout from ros2#2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (ros2#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (ros2#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (ros2#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (ros2#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (ros2#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (ros2#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (ros2#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (ros2#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (ros2#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (ros2#3086) (ros2#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>
audrow pushed a commit that referenced this pull request Feb 13, 2023
…3317)

* Update intro to WSL

* Revert "Update intro to WSL"

This reverts commit 52a52d0.

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Update world with declarations

* Add supervisor node and environment var

* Add ros2supervisorlauncher node creation in launch files

* add env variable for linux

* Update tutorial with explanations

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Add ros2supervisorlauncher node creation in launch files

* Update intro to WSL

* Update tutorial with explanations

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update Webots.rst

* Remove trailing white spaces

* Update to VM and no supervisor

* Remove wrong text

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

---------

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>
Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>
mergify bot pushed a commit that referenced this pull request Feb 13, 2023
…3317)

* Update intro to WSL

* Revert "Update intro to WSL"

This reverts commit 52a52d0.

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Update world with declarations

* Add supervisor node and environment var

* Add ros2supervisorlauncher node creation in launch files

* add env variable for linux

* Update tutorial with explanations

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Add ros2supervisorlauncher node creation in launch files

* Update intro to WSL

* Update tutorial with explanations

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update Webots.rst

* Remove trailing white spaces

* Update to VM and no supervisor

* Remove wrong text

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

---------

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>
Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>
(cherry picked from commit 588b10a)
mergify bot pushed a commit that referenced this pull request Feb 13, 2023
…3317)

* Update intro to WSL

* Revert "Update intro to WSL"

This reverts commit 52a52d0.

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Update world with declarations

* Add supervisor node and environment var

* Add ros2supervisorlauncher node creation in launch files

* add env variable for linux

* Update tutorial with explanations

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Add ros2supervisorlauncher node creation in launch files

* Update intro to WSL

* Update tutorial with explanations

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update Webots.rst

* Remove trailing white spaces

* Update to VM and no supervisor

* Remove wrong text

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

---------

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>
Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>
(cherry picked from commit 588b10a)
audrow pushed a commit that referenced this pull request Feb 13, 2023
…3317) (#3332)

* Update intro to WSL

* Revert "Update intro to WSL"

This reverts commit 52a52d0.

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Update world with declarations

* Add supervisor node and environment var

* Add ros2supervisorlauncher node creation in launch files

* add env variable for linux

* Update tutorial with explanations

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Add ros2supervisorlauncher node creation in launch files

* Update intro to WSL

* Update tutorial with explanations

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update Webots.rst

* Remove trailing white spaces

* Update to VM and no supervisor

* Remove wrong text

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

---------

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>
Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>
(cherry picked from commit 588b10a)

Co-authored-by: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
audrow pushed a commit that referenced this pull request Feb 13, 2023
…3317) (#3331)

* Update intro to WSL

* Revert "Update intro to WSL"

This reverts commit 52a52d0.

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Update world with declarations

* Add supervisor node and environment var

* Add ros2supervisorlauncher node creation in launch files

* add env variable for linux

* Update tutorial with explanations

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update intro to wsl

* Remove windows tabs

* Add windows WSL tab for extern controller code

* Clean tutorial

* Add ros2supervisorlauncher node creation in launch files

* Update intro to WSL

* Update tutorial with explanations

* include correct file for supervisor part

* Add WEBOTS_CONTROLLER_URL wsl infos

* cleanup

* Remove confusing sentence

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

* Squashed commit of the following:

commit 72effa7
Author: Luke Schmitt <85308904+LSinterbotix@users.noreply.github.com>
Date:   Tue Nov 1 17:26:25 2022 -0500

    Fix list formatting on Contact page (#3153)

commit dcd066f
Author: Dan Zimmerman <dan@danzimmerman.com>
Date:   Tue Nov 1 16:29:34 2022 -0400

    Update throttle logging docs with units and data type hints (re: rclcpp/issues/1929) (#3143)

    * Note milliseconds on API Concepts page

    * Add units and types to About Logging page

    Co-authored-by: dan <dan@polarworks.no>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 375b6cf
Author: definitelyuncertain <saikirann94@gmail.com>
Date:   Fri Oct 28 14:30:22 2022 -0500

    Change to mention explicit requirement for folder names for .msg and .srv files (#3144)

    * Change to mention explicit requirement for folder names for msg and srv files

    From ros2/tutorials#29

    * fix typo

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>

    * fix rst formatting

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

    Co-authored-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit da871ef
Author: Sergei Sergienko <divelix1@gmail.com>
Date:   Thu Oct 27 17:20:06 2022 +0300

    fix link to Gazebo-ROS2 bridge + CLI examples (#3139)

    * fix link to Gazebo-ROS2 bridge + CLI examples

    Co-authored-by: Chris Lalancette <clalancette@gmail.com>

commit e19c9b5
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 16:31:21 2022 -0400

    Update the language to match the source code. (#3135)

    Fallout from #2865

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit a5910a1
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Wed Oct 26 08:38:36 2022 -0400

    Shorten the Windows build-from-source path. (#3130)

    * Shorten the Windows build-from-source path.

    This is to keep the total length down below the 260 character
    limit imposed by Windows by default.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8225686
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 24 08:30:37 2022 -0400

    Fix up the variable name in the traveling in time (C++) tutorial. (#3115)

    This is just to match what is in the code in the upstream
    repository.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 87ab121
Author: Ian Colwell <48106342+icolwell-as@users.noreply.github.com>
Date:   Fri Oct 21 11:07:30 2022 -0400

    Update default WORKING_DIRECTORY for ament_add_gtest() (#3117)

commit 87bf20a
Author: chianfern <chianfern@gmail.com>
Date:   Tue Oct 18 21:36:57 2022 +0800

    Add ParameterDescriptor to 'Using parameters in a class (C++)' (#2865)

    * Rename node name in "Using parameters" C++ tutorial to be consistent with Python tutorial.

    Signed-off-by: Tan Chian Fern <chianfern@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 77646ce
Author: George Stavrinos <gstavrinos@protonmail.com>
Date:   Tue Oct 18 15:29:37 2022 +0300

    Fixed Intel's robot SDK repo with the new devkit name + reference to MoveIt2 instead of 1. (#3107)

commit 1d24955
Author: Chris Lalancette <clalancette@openrobotics.org>
Date:   Mon Oct 17 14:06:52 2022 -0400

    Monitor parameter changes: Add note to save callback handle (#3102)

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8910a80
Author: David V. Lu!! <davidvlu@gmail.com>
Date:   Fri Oct 14 09:56:14 2022 -0400

    Some testing basics (#3084)

    * Some testing basics

    Signed-off-by: David V. Lu <davidvlu@gmail.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

commit 8771452
Author: Tomoya Fujita <Tomoya.Fujita@sony.com>
Date:   Fri Oct 14 05:34:20 2022 -0700

    Sony's task for Iron Release. (#3089)

    * Sony's task for Iron Release.

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>

    * Rearrange and add in links.

    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>

    Signed-off-by: Tomoya.Fujita <Tomoya.Fujita@sony.com>
    Signed-off-by: Chris Lalancette <clalancette@openrobotics.org>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>

commit 2ea9e7d
Author: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Date:   Fri Oct 14 14:23:13 2022 +0200

    Update Setting-up a Robot Simulation (Webots) tutorial (#3090)

    * Update intro to WSL

    * Update world with declarations

    * Add supervisor node and environment var

    * Update tutorial with explanations

    Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>

commit 0390a50
Author: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Date:   Thu Oct 13 13:42:30 2022 -0400

    fix unresolved package requirement to install Humble on Ubuntu 20.04 (#3086) (#3088)

    * fix command to install humble on Ubuntu 20.04

    Co-authored-by: paolo.dimasi <paodimasi@outlook.com>
    Co-authored-by: Chris Lalancette <clalancette@openrobotics.org>
    (cherry picked from commit 5626af9)

    Co-authored-by: Paolo Dimasi <46300254+Pamasi@users.noreply.github.com>

* Update Webots.rst

* Update Webots.rst

* Remove trailing white spaces

* Update to VM and no supervisor

* Remove wrong text

* Update source/Tutorials/Advanced/Simulators/Webots.rst

Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>

---------

Co-authored-by: ad-daniel <44834743+ad-daniel@users.noreply.github.com>
Co-authored-by: Olivier Michel <Olivier.Michel@cyberbotics.com>
(cherry picked from commit 588b10a)

Co-authored-by: Yannick Goumaz <61198661+ygoumaz@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport-all backport at reviewers discretion; from rolling to all versions
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants