-
Notifications
You must be signed in to change notification settings - Fork 19
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
Node configuration #10
Comments
@jubeira in the past we had written some code to read a yaml file and upload it to the parameter server. I don't know where that ended up but it wasn't very complicated. |
@adamantivm I think you mean the library mentioned in #21. This is certainly a good candidate to solve this problem, I will look into it soon. |
UPDATE: SnakeYaml library was added as a RosJava node in #24 . |
Update: with #31, the local and global costmap common parameters are configured as in the Turtlebot example. Planners and navcore parameters pending. |
Update: #40 adds the default navstack configuration for a turtlebot. |
Many nodes of the Nav Stack (mainly move_base, but also others like robot state publishers with its descriptions) require to have access to several configuration parameters.
In Linux, this problem is addressed using launchfiles, which are not available in Android environments. Then, some other way of configuring nodes has to be implemented in Android to solve this problem.
One possible option is to create a node that reads configuration files and updates the parameter server, emulating launchfiles.
Another option is to configure the nodes by using code directly (perhaps faster to implement, but less flexible).
The text was updated successfully, but these errors were encountered: