-
Notifications
You must be signed in to change notification settings - Fork 53
Description
I find that on ROS2 Jazzy, the minimal example parameters.rs doesn't work. I can't access the parameters externally via ros2 param .... We need parameters in our project, so I'm going to debug this, but I'm curious if anyone else has any problems with this.
I'm currently trying:
-
The service example in
r2r_minimal_node(https://github.com/m-dahl/r2r_minimal_node) works fine forros2 service .... It doesn't respond toros2 param ...as expected (it doesn't start a parameter handler). When I add the parameter handler from theparametersexample, it still doesn't respond toros2 param .... -
With debug statements inside the parameter handler code (
r2r/src/parameters.rs), it looks like even the requests are not coming in. So it looks like a lower-level communication issue.
I'll keep you posted when I find anything...