Skip to content

Commit

Permalink
README.md format
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos San Vicente <carlos.svic@gmail.com>
  • Loading branch information
carlossvg committed Jul 9, 2021
1 parent df87d38 commit e5f6e58
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions rclcpp/minimal_subscriber/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ This package contains a few different strategies for creating nodes which receiv
* `lambda.cpp` uses a C++11 lambda function
* `member_function.cpp` uses a C++ member function callback
* `not_composable.cpp` uses a global function callback without a Node subclass
* `wait_set.cpp` uses a `rclcpp::WaitSet` to wait and poll for data
* `wait_set.cpp` uses a `rclcpp::StaticWaitSet` to wait and poll for data
* `wait_set_time_triggered.cpp` uses a `rclcpp::Waitset` and a timer to poll
for data periodically
* `wait_set.cpp` uses a `rclcpp::WaitSet` to wait and poll for data
* `static_wait_set.cpp` uses a `rclcpp::StaticWaitSet` to wait and poll for data
* `wait_set_time_triggered.cpp` uses a `rclcpp::Waitset` and a timer to poll for data periodically

Note that `not_composable.cpp` instantiates a `rclcpp::Node` _without_ subclassing it.
This was the typical usage model in ROS 1, but this style of coding is not compatible with composing multiple nodes into a single process.
Expand Down

0 comments on commit e5f6e58

Please sign in to comment.