Do not need to execute planned trajectories on real robot.#105
Merged
Conversation
peifeng-unity
approved these changes
Jan 27, 2021
LaurieCheers-unity
approved these changes
Jan 27, 2021
LaurieCheers-unity
added a commit
that referenced
this pull request
Feb 16, 2021
* Do not need to execute planned trajectories on real robot. (#105) * Sarah/readme update (#112) * Mpinol/simrealrebased (#107) * Dextra/pose estimation (#122) * Split tutorial part 4 (#146) * Update with new instructions (#147) * Update tutorial text (#148) Co-authored-by: mpinol <mpinol@users.noreply.github.com> Co-authored-by: sarah-gibson <72100462+sarah-gibson@users.noreply.github.com> Co-authored-by: Sarah <sarah.wolf32@gmail.com>
peifeng-unity
pushed a commit
that referenced
this pull request
May 26, 2021
sdiao
pushed a commit
that referenced
this pull request
May 26, 2021
This file contains hidden or 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
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.
https://jira.unity3d.com/browse/AIRO-370
The
No data available on network stream after 10 attempts.error is being thrown because mover is taking too long to return the trajectories to be executed. If either the time between attempts or number of attempts is increased the error goes away.That being said, why would such a simple trajectory take so long?
move_group.go()attempts to execute the planned trajectory on a physical robot which is causing most of the overhead.move_group.plan()is really all we need.I also noticed that the TCP Connector instantiates the service's response message so the trajectories would never be null.