-
Notifications
You must be signed in to change notification settings - Fork 141
Feature: G1 control coordinator adapter for mobile base cmd vel #1410
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
Open
mustafab0
wants to merge
19
commits into
dev
Choose a base branch
from
feature/mustafa-g1-adapter-for-mobile-base-cmd_vel
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f9a36ef
coordinator addapter for g1 mobile base
mustafab0 070ae45
added control coordinator webrtc adapter for g1
mustafab0 410a025
seperated standup and walk ready sequence for better bring up experience
mustafab0 656d41e
control cooridnator blueprints added for dds and webrtc clients
mustafab0 6d26596
updated pyrpoject.toml and uv.lock
mustafab0 15c93c2
tuning delay for locked standing
mustafab0 5491bf7
updated test file to ignore unitree-dds package
mustafab0 1a83e7f
added json parsing for FSM mode and added comment explaining need for…
mustafab0 b5e53f4
dix disposablebase import
mustafab0 6fc43f3
updated toml and uv lock
mustafab0 c00483e
added test ignore for unitree-dds
mustafab0 cef5b57
fix mypy errors
mustafab0 9cd7865
fixed multi line import error
mustafab0 67b28af
Added cyclonedds-dev apt package + symlink directory structure with
mustafab0 4e80bea
Docker RUN uses /bin/sh, not bash, so brace expansion {lib,bin,includ…
mustafab0 2457ada
from-image only uses the branch tag when ros-python both succeeded an…
mustafab0 6e2a806
Fix: replaced apt install cyclonedds-dev + symlinks with building Cyc…
mustafab0 c61b941
Added # type: ignore[import-untyped]
mustafab0 da2cc4d
added import untyped ignore to the correct line
mustafab0 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Copyright 2025-2026 Dimensional Inc. | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| """Unitree G1 humanoid robot adapter.""" | ||
|
|
||
| from dimos.hardware.drive_trains.unitree_g1.adapter import UnitreeG1TwistAdapter | ||
|
|
||
| __all__ = ["UnitreeG1TwistAdapter"] |
Oops, something went wrong.
Oops, something went wrong.
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.
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.
pls dont touch CI unless you have very good reason
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.
Yes, I debated quite a bit before adding this.
The original intended to fall back to dev when ros-python didn't build, but the problem is GitHub Actions expression evaluation: ros-python.result == 'success' is true even when should-run was false (all steps skipped, job still reports success). So the original resolves to branch-tag instead of 'dev'. This causes a bug where it expects the ros-python build but gets a stale one.
This edit adds the extra check (python == 'true' || ros == 'true') so it only uses the branch tag when those files actually changed, meaning ros-python actually built something.
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.
I totally understand your concern here. You finally got CI to work properly I am scared of breaking it again too. 😅