-
Notifications
You must be signed in to change notification settings - Fork 41
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 :trajectory-filter to ignore start-offset-time #361
Conversation
#359 doesn't work because |
can we add some of the test code in pr2eus and also jsk_robot so that we can find jsk-ros-pkg/jsk_robot#956, jsk-ros-pkg/jsk_robot#955 ? |
@k-okada Thank you. I'll do that |
I'll also fix all calling of :trajectory-filter not to pass start-offset-time |
why you need this? |
otherwise, we do not need to modify API. |
No, #359 doesn't work.
If maintaining current
As the latter is the same as |
8b73049
to
99e2e20
Compare
Fixed all calling of :trajectory-filter not to pass start-offset-time and added test |
99e2e20
to
7682eac
Compare
@k-okada |
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.
lgtm
Include #373
start-offset-time
should only affect time stamp of trajectory, which is set in:send-trajectory
.We don't need to set it in
trajectory-filter
.Total time of trajectory becomes
start-offset-time
[s] +total-time
[ms].The execution of first trajectory point takes original
time_from_start
+start-offset-time
.As
start-offset-time
also affects time stamp of trajectory, trajectory finishesstart-offset-time
* 2 +total-time
after calling:angle-vector-motion-plan
.