-
Notifications
You must be signed in to change notification settings - Fork 1.9k
OMPL and Qt API update, bump cmake minimum version requirement #6136
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
base: main
Are you sure you want to change the base?
Changes from all commits
2566894
f9c971c
2952c12
a69bdba
ab2e135
1291bc9
9f1ebd6
ea63e80
9f42691
db3ba58
b8b47a9
1be733d
c55c574
22de469
bafe24c
f5d4c40
cdd0421
5f046eb
76a9264
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -76,7 +76,7 @@ void FollowPathAction::on_wait_for_result( | |
| getInput("path", new_path); | ||
|
|
||
| // Check if it is not same with the current one | ||
| if (goal_.path != new_path && new_path != nav_msgs::msg::Path()) { | ||
| if (goal_.path != new_path && !new_path.poses.empty()) { | ||
|
SteveMacenski marked this conversation as resolved.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are actually not the same thing since there is a possibility to have an empty, but "populated" path with no poses. Checking the constructor is to check if there was never a new path in the first place, not simply that its empty. I know this was to fix a compilation issue, but perhaps we could just change this to: I however, don't actually feel that strongly about it. Its just a potential subtle bug that could happen in some situations I'm trying to avoid. |
||
| // the action server on the next loop iteration | ||
| goal_.path = new_path; | ||
| goal_updated_ = true; | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| nav2_add_gtest(test_behaviors | ||
| test_behaviors.cpp | ||
| ) | ||
| target_link_libraries(test_behaviors rclcpp::rclcpp rclcpp_action::rclcpp_action ${nav2_msgs_TARGETS} ${library_name}) | ||
| target_link_libraries(test_behaviors rclcpp::rclcpp rclcpp_action::rclcpp_action nav2_msgs::nav2_msgs ${library_name}) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -169,9 +169,14 @@ def generate_launch_description() -> LaunchDescription: | |
| name=container_name, | ||
| namespace=namespace, | ||
| package='rclcpp_components', | ||
| executable='component_container_isolated', | ||
| executable='component_container', | ||
| parameters=[configured_params, {'autostart': autostart}], | ||
| arguments=['--ros-args', '--log-level', log_level], | ||
| # event executor + isolated + thread num = 1 | ||
| arguments=['--isolated', '--executor-type', 'events-cbg', | ||
| '--ros-args', '--log-level', log_level, '-p', 'thread_num:=1'], | ||
| # single threaded + isolated | ||
| # arguments=['--isolated', '--executor-type', 'single-threaded', | ||
| # '--ros-args', '--log-level', log_level], | ||
|
Comment on lines
+174
to
+179
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Obviously some of this commentary would need to be removed (temporarily) until we actually do migrate to the events executor in another PR? |
||
| remappings=remappings, | ||
| output='screen', | ||
| ), | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.