-
Notifications
You must be signed in to change notification settings - Fork 132
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
Export robotlist #579
Export robotlist #579
Conversation
should be used in |
Wow, sweet....that will help keep things consistent quite a lot! We should do the same for |
this is tricky as not all robots are configured for high-level packages. |
Sorry, I introduced a merge conflict when merging #578 However, when using this for |
rebased
New package |
Also already did that in #582
I would keep the |
This even reduces the dependencies (just A |
nice solution to mimimise maintenance effort. But I don't like the fact that we introduce dependencies to cob_hardware_config from every package (also simulation related and possibly high-level packages). So I vote for introducing a new package
Alternative would be to use the list out of cob_calibration_data. Pro: no cyclic dependencies because cob_calibration_data has no further dependencies and it doesn't hurt if all packages depend on cob_calibration_data |
I vote for keeping the list We can migrate to
this is not cyclic! cyclic (with this PR): |
added |
@ipa-fmw: added your changes |
Once this is merged we need to update ipa320/cob_simulation#130 |
So, we are going to keep the |
@@ -15,4 +15,6 @@ | |||
|
|||
<depend>roslaunch</depend> | |||
|
|||
<build_depend>cob_supported_robots</build_depend> |
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.
why build_depend
? other packages have test_depend
defined
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.
due to using robotlist in install tags
@@ -16,6 +16,8 @@ | |||
<depend>roslaunch</depend> | |||
<depend>rostest</depend> | |||
|
|||
<build_depend>cob_supported_robots</build_depend> |
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.
why build_depend
? other packages have test_depend
defined
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.
due to using robotlist in install tags
|
addresses #577