-
Notifications
You must be signed in to change notification settings - Fork 681
G1 raytracing navigation stack (unitree-g1-nav-simple) #2327
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
jeff-hykin
wants to merge
31
commits into
main
Choose a base branch
from
jeff/feat/g1_raycast
base: main
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 29 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
3b24166
have rust use nix
jeff-hykin 51666bc
-
jeff-hykin ec03969
add lock
jeff-hykin 0707dbb
fix pyproject.toml for the g1
jeff-hykin ac6e236
fix: rename uintree → unitree typo in g1 primitive blueprints
jeff-hykin ab6679f
g1 raytracing, but frame ids of replanning a star seem to be broken (…
jeff-hykin 6d9089f
Merge branch 'main' of github.com:dimensionalOS/dimos into jeff/feat/…
jeff-hykin 3c204de
fastlio self.frame_id
jeff-hykin 2dc70bb
make replanner blueprint configurable
jeff-hykin c68ed56
initial_safe_radius_meters
jeff-hykin b3d7675
fix astar reference frames
jeff-hykin 51087d1
add g1 config
jeff-hykin 34df7db
fix stuck measure
jeff-hykin a129629
-
jeff-hykin 739785b
fix deadzone
jeff-hykin bbd69f7
_g1_path_colors
jeff-hykin 557dd21
restore
jeff-hykin 593846c
clean
jeff-hykin bf46f08
improve
jeff-hykin 585344e
-
jeff-hykin 7056733
un inline
jeff-hykin c203026
costmap colors
jeff-hykin cb30084
merge main
jeff-hykin 30ab7c5
make unitree_g1_onboard a private sub-blueprint
jeff-hykin b35711f
Merge branch 'main' into jeff/feat/g1_raycast
jeff-hykin 22ab489
fix(g1): narrow optional clearance types for mypy
jeff-hykin a4207d0
Merge remote-tracking branch 'origin/main' into jeff/feat/g1_raycast
jeff-hykin ca9e7dd
Merge remote-tracking branch 'origin/main' into jeff/feat/g1_raycast
jeff-hykin 6725dca
Merge remote-tracking branch 'origin/main' into jeff/feat/g1_raycast
jeff-hykin c85fea6
Merge remote-tracking branch 'origin' into jeff/feat/g1_raycast
jeff-hykin 6f7f03b
Merge branch 'jeff/feat/g1_raycast' of github.com:dimensionalOS/dimos…
jeff-hykin 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -72,6 +72,7 @@ yolo11n.pt | |
| /results | ||
| results/ | ||
| **/cpp/result | ||
| **/rust/result | ||
|
|
||
| CLAUDE.MD | ||
| /assets/teleop_certs/ | ||
|
|
||
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
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 |
|---|---|---|
| @@ -1 +1,2 @@ | ||
| target/ | ||
| result |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,42 @@ | ||
| { | ||
| description = "Voxel ray tracing native module for DimOS"; | ||
|
|
||
| inputs = { | ||
| nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; | ||
| flake-utils.url = "github:numtide/flake-utils"; | ||
| # Relative git+file: will be deprecated (nix#12281) but there's no | ||
| # viable alternative for reaching local path deps outside the flake dir currently | ||
| # presumably an alternative will be added before this is removed | ||
| dimos-repo = { url = "git+file:../../../.."; flake = false; }; | ||
| }; | ||
|
|
||
| outputs = { self, nixpkgs, flake-utils, dimos-repo }: | ||
| flake-utils.lib.eachDefaultSystem (system: | ||
| let | ||
| pkgs = import nixpkgs { inherit system; }; | ||
|
|
||
| src = pkgs.runCommand "voxel-ray-tracing-src" {} '' | ||
| mkdir -p $out/dimos/mapping/ray_tracing/rust | ||
| cp -r ${./src} $out/dimos/mapping/ray_tracing/rust/src | ||
| cp ${./Cargo.toml} $out/dimos/mapping/ray_tracing/rust/Cargo.toml | ||
| cp ${./Cargo.lock} $out/dimos/mapping/ray_tracing/rust/Cargo.lock | ||
|
|
||
| mkdir -p $out/native/rust | ||
| cp -r ${dimos-repo}/native/rust/dimos-module $out/native/rust/dimos-module | ||
| cp -r ${dimos-repo}/native/rust/dimos-module-macros $out/native/rust/dimos-module-macros | ||
| ''; | ||
| in { | ||
| packages.default = pkgs.rustPlatform.buildRustPackage { | ||
| pname = "voxel-ray-tracing"; | ||
| version = "0.1.0"; | ||
|
|
||
| inherit src; | ||
| cargoRoot = "dimos/mapping/ray_tracing/rust"; | ||
| buildAndTestSubdir = "dimos/mapping/ray_tracing/rust"; | ||
|
|
||
| cargoHash = "sha256-g30NaoLdtWT5YBsEnE4Xv+EMnI5HHFtZAUtdEL/VbKQ="; | ||
|
|
||
| meta.mainProgram = "voxel_ray_tracing"; | ||
| }; | ||
| }); | ||
| } |
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
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.
Uh oh!
There was an error while loading. Please reload this page.