-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Fix: /tf and /static_tf topics' inconsistencies #2676
Merged
Nir-Az
merged 11 commits into
IntelRealSense:ros2-development
from
Arun-Prasad-V:dynamic_tf_broadcast
Apr 27, 2023
Merged
Changes from 4 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
ec8023a
Avoid configuring dynamic_tf_broadcaster within tf_publish_rate param…
Arun-Prasad-V b092f35
Avoid configuring dynamic_tf_broadcaster within tf_publish_rate's cb
Arun-Prasad-V f032edb
Fix: Don't publish /tf when publish_tf is false
Arun-Prasad-V 1e38de7
Indentation corrections
Arun-Prasad-V ce50027
Added 'publish_tf' param in rs launch files
Arun-Prasad-V f36c390
Fix: Avoid /tf_static being broadcasted when 'publish_tf' param set t…
Arun-Prasad-V 31f3cac
Fixing /tf topic has only TFs of last started sensor
Arun-Prasad-V dce6b74
Merge branch 'IntelRealSense:ros2-development' into dynamic_tf_broadcast
Arun-Prasad-V 7ebd9ce
Updated TF descriptions in launch py and readme
Arun-Prasad-V 82eb970
Moved all TF related functions to tfs.cpp
Arun-Prasad-V 3e87a6c
Revamped the TF related code
Arun-Prasad-V File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,6 @@ void BaseRealSenseNode::getParameters() | |
startDynamicTf(); | ||
}); | ||
_parameters_names.push_back(param_name); | ||
startDynamicTf(); | ||
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. Does this change the behavior from default start publishing to not? 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. |
||
|
||
param_name = std::string("diagnostics_period"); | ||
_diagnostics_period = _parameters->setParam<double>(param_name, DIAGNOSTICS_PERIOD); | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just a question, can you remind me when we will get to here ? In which scenario ?