-
Notifications
You must be signed in to change notification settings - Fork 11
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
Add A300 to supported platforms #63
Conversation
@@ -163,6 +163,10 @@ def __init__(self, setup_path: str = '/etc/clearpath/') -> None: | |||
self.cmd_vel_node, | |||
self.odom_base_node, | |||
], | |||
Platform.A300: [ |
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.
Lets make a common platform components array to hold the cmd_vel_node and odom_base_node since all robots will use these. Same way we did it here: https://github.com/clearpathrobotics/clearpath_robot/blob/a88192de11edf7425e968fd9fa730435181fff3c/clearpath_generator_robot/clearpath_generator_robot/launch/generator.py#L231
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.
Taken a first-pass at implementing this.
@@ -237,7 +220,7 @@ def generate_platform(self) -> None: | |||
platform_service_launch_writer.add_launch_file(self.platform_launch_file) | |||
|
|||
# Platform components | |||
for component in self.platform_components[self.platform_model]: | |||
for component in self.latform_components[self.platform_model]: |
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.
Typo
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.
...how did that not trigger an error when i tested it? now i have so many questions about what's wrong with my environment. that's alarming...
This may be a wider CI question but CI is failing to install clearpath_generator_common and clearpath_viz. Are these externally available? |
I'll answer my own question. They don't seem to be released in Jazzy yet. |
No description provided.