forked from tier4/nebula
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Make launch_hw param reconfigurable. #2
Open
mbharatheesha
wants to merge
7
commits into
main
Choose a base branch
from
launch-hw-dynamic
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
Signed-off-by: Mukunda Bharatheesha <[email protected]>
Signed-off-by: Mukunda Bharatheesha <[email protected]>
The fixes pushed today enable the dynamic update of
There are a few questions I have regarding the behavior of one of the threads. I will ask the same in the upstream PR. But I think we can incrementally generate binaries as and when the other drivers are adapted to support dynamic reconfiguration of |
Upstream PR: tier4#263 |
Signed-off-by: Mukunda Bharatheesha <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The problem:
nebula_ros
doesn't support dynamic enabling/disabling of hw driver at runtime because thelaunch_hw
parameter is read-only.This PR:
A WIP solution attempt to make the parameter dynamically reconfigurable and setup necessary hardware interfaces when the
launch_hw
parameter is set dynamically. I have tried to ensure the threading part is handled as carefully as possible, but it would be great if I can get some feedback on the sameWhat has been tested so far:
ros2 param set <nebula_driver_node_name> launch_hw true
successfully returns:Set parameter successful
.Missed pointcloud output deadline
whenlaunch_hw
parameter isfalse
(statically or dynamically set). This is because in this configuration, the driver is expecting some other source to publish on/velodyne/packets
topic. When the parameter was read-only, this was the same behavior too.launch_hw
is set to true (statically or dynamically) without a physical lidar connected to the device, the lidar driver crashes with this exceptionCould not initialize HTTP client: Http Connection Error
To test: