-
Notifications
You must be signed in to change notification settings - Fork 89
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
[wip] [jsk_maps] Add change-floor server to change map #1251
Conversation
jsk_maps/src/change-floor-server.l
Outdated
(let ((current-costmap-publish-frequency | ||
(ros::get-param (format nil "~A/~A/publish_frequency" | ||
*move-base-node* *costmap-name*)))) | ||
(unix::usleep (* 1000 1000)) |
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.
(unix:sleep 1)
?
jsk_maps/src/change-floor.l
Outdated
@@ -0,0 +1,49 @@ | |||
#!/usr/bin/env roseus |
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.
This file seems to be a module. Need to be executable?
jsk_maps/src/change-floor.l
Outdated
(defun change-floor (target-floor | ||
&key | ||
(floor-frame "/map") | ||
(topicname "/inamenitialpose3d") |
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.
(topicname "/initialpose3d")
?
@YutoUchimi |
why you need this node ? Is current demo code not able to change the floor ? |
In current demo code, changes the floor function only supports for pr2. |
OK. I'll change it to use |
No description provided.